diff --git a/pkgs/development/libraries/glibc/builder.sh b/pkgs/development/libraries/glibc/builder.sh index a22429b2cb1a..0ff9b058a8cc 100644 --- a/pkgs/development/libraries/glibc/builder.sh +++ b/pkgs/development/libraries/glibc/builder.sh @@ -1,6 +1,6 @@ # glibc cannot have itself in its rpath. export NIX_NO_SELF_RPATH=1 -export NIX_DEBUG=1 +#export NIX_DEBUG=1 export NIX_DONT_SET_RPATH=1 . $stdenv/setup @@ -45,14 +45,6 @@ preConfigure() { preConfigure=preConfigure -configurePhase() { - preConfigure - $SHELL $configureScript $configureFlags --prefix=$out -} - -configurePhase=configurePhase - - postInstall() { if test -n "$installLocales"; then make localedata/install-locales diff --git a/pkgs/development/libraries/glibc/subst.sh b/pkgs/development/libraries/glibc/subst.sh index 4687e27a2cbe..1db5c22123e5 100644 --- a/pkgs/development/libraries/glibc/subst.sh +++ b/pkgs/development/libraries/glibc/subst.sh @@ -2,4 +2,5 @@ FILES="configure io/ftwtest-sh" for i in $FILES ; do sed -e "s^@PWD@^pwd^g" < $i > $i.new mv $i.new $i + chmod +x $i done