From b19d591a7e72026a88dd60db56031e6b3bf13664 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 1 Jan 2007 14:17:06 +0000 Subject: [PATCH] * Another attempt at fixing NIXPKGS-37. svn path=/nixpkgs/trunk/; revision=7525 --- pkgs/os-specific/linux/kernel/builder.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/builder.sh b/pkgs/os-specific/linux/kernel/builder.sh index 02f2c3d9464..b9eba8cc0e1 100644 --- a/pkgs/os-specific/linux/kernel/builder.sh +++ b/pkgs/os-specific/linux/kernel/builder.sh @@ -8,8 +8,11 @@ configurePhase() { cp $config .config - substituteInPlace scripts/kconfig/lxdialog/check-lxdialog.sh \ - --replace /usr /no-such-path + #substituteInPlace scripts/kconfig/lxdialog/check-lxdialog.sh \ + # --replace /usr /no-such-path + + # Necessary until NIXPKGS-38 is fixed: + echo "#! $SHELL" >> scripts/kconfig/lxdialog/check-lxdialog.sh make silentoldconfig }