* Use the pure stdenv on x86_64.

svn path=/nixpkgs/trunk/; revision=6849
This commit is contained in:
Eelco Dolstra 2006-10-25 13:27:43 +00:00
parent 4f03dec496
commit b831b236ba

View file

@ -90,11 +90,12 @@ rec {
# Select the appropriate stdenv for the platform `system'.
stdenv =
if stdenvType == "i686-linux" then stdenvLinux
else if stdenvType == "i686-freebsd" then stdenvFreeBSD
else if stdenvType == "i686-cygwin" then stdenvCygwin
else if stdenvType == "i686-mingw" then stdenvMinGW
else if stdenvType == "powerpc-darwin" then stdenvDarwin
else if stdenvType == "i686-darwin" then stdenvNix
else stdenvNative;
if stdenvType == "i686-linux" then stdenvLinux else
if stdenvType == "x86_64-linux" then stdenvLinux else
if stdenvType == "i686-freebsd" then stdenvFreeBSD else
if stdenvType == "i686-cygwin" then stdenvCygwin else
if stdenvType == "i686-mingw" then stdenvMinGW else
if stdenvType == "powerpc-darwin" then stdenvDarwin else
if stdenvType == "i686-darwin" then stdenvNix else
stdenvNative;
}