From e559192847ebe102186daeb0a7139cfe5b551e8e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 7 Jun 2009 21:49:14 +0000 Subject: [PATCH] * Fix module installation. svn path=/nixpkgs/trunk/; revision=15887 --- pkgs/os-specific/linux/kernel/builder.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/builder.sh b/pkgs/os-specific/linux/kernel/builder.sh index 696b2f2fbe4..89d46418924 100644 --- a/pkgs/os-specific/linux/kernel/builder.sh +++ b/pkgs/os-specific/linux/kernel/builder.sh @@ -79,7 +79,7 @@ installPhase() { # /lib/modules). The depmod_opts= is to prevent the kernel # from passing `-b PATH' to depmod. export MODULE_DIR=$out/lib/modules/ - substituteInPlace Makefile --replace '-b $(INSTALL_MOD_PATH) -r' '' + substituteInPlace Makefile --replace '-b $(INSTALL_MOD_PATH)' '' make modules_install \ DEPMOD=$module_init_tools/sbin/depmod depmod_opts= \ $makeFlags "${makeFlagsArray[@]}" \