From e9c1e32a0f02366a4509cf5b7e1eb6dcec68c79c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 1 Jan 2007 11:45:48 +0000 Subject: [PATCH] * Work around an ncurses impurity. svn path=/nixpkgs/trunk/; revision=7523 --- pkgs/os-specific/linux/kernel/builder.sh | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/builder.sh b/pkgs/os-specific/linux/kernel/builder.sh index 9550770c9f6..662fc43a202 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= }