Removed stdenvUsingSetupNew2; now stdenvNewSetupScript = stdenv

svn path=/nixpkgs/branches/stdenv-updates/; revision=9740
This commit is contained in:
Yury G. Kudryashov 2007-11-17 14:35:02 +00:00
parent a6797a6f4e
commit 3e6713db06

View File

@ -244,8 +244,6 @@ rec {
}
else defaultStdenv;
stdenvUsingSetupNew2 = overrideSetup stdenv ../stdenv/generic/setup-new-2.sh;
### BUILD SUPPORT
@ -294,7 +292,7 @@ rec {
writeScript = name: text: runCommand name {inherit text;} "echo -n \"$text\" > $out; chmod +x $out";
stdenvNewSetupScript = overrideSetup stdenv ../stdenv/generic/setup-new.sh;
stdenvNewSetupScript = stdenv;
substituteAll = import ../build-support/substitute/substitute-all.nix {
inherit stdenv;