summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-01-01 11:45:48 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-01-01 11:45:48 +0000
commite9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c (patch)
treeceeffad1b80f7d8850422953983149effae61485 /pkgs/os-specific/linux
parente81c87c1225e56b69c65b10f2e214c638423b119 (diff)
downloadnixlib-e9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c.tar
nixlib-e9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c.tar.gz
nixlib-e9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c.tar.bz2
nixlib-e9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c.tar.lz
nixlib-e9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c.tar.xz
nixlib-e9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c.tar.zst
nixlib-e9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c.zip
* Work around an ncurses impurity.
svn path=/nixpkgs/trunk/; revision=7523
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/kernel/builder.sh11
1 files changed, 1 insertions, 10 deletions
diff --git a/pkgs/os-specific/linux/kernel/builder.sh b/pkgs/os-specific/linux/kernel/builder.sh
index 9550770c9f67..662fc43a2022 100644
--- a/pkgs/os-specific/linux/kernel/builder.sh
+++ b/pkgs/os-specific/linux/kernel/builder.sh
@@ -3,20 +3,11 @@ source $stdenv/setup
 
 configurePhase=configurePhase
 configurePhase() {
-
-        #hashname=$(basename $out)
-        #if echo "$hashname" | grep -q '^[a-z0-9]\{32\}-'; then
-        #  hashname=$(echo "$hashname" | cut -c -32)
-        #fi
-
-        #extraname=$(grep ^EXTRAVERSION Makefile)
-        #perl -p -i -e "s/^EXTRAVERSION.*/$extraname-$hashname/" Makefile
-        
 	export INSTALL_PATH=$out
 	export INSTALL_MOD_PATH=$out
 
 	cp $config .config
-        make oldconfig
+        make oldconfig HOST_LOADLIBES= HOST_EXTRACFLAGS=
 }