Trying to fix the stdenv used on i686-darwin, which stopped working after my

statement of the gcc-wrapper coreutils dependency on r17867.
I don't have i686-darwin to try this.


svn path=/nixpkgs/branches/stdenv-updates/; revision=18490
This commit is contained in:
Lluís Batlle i Rossell 2009-11-20 16:56:11 +00:00
parent 28d9e73d34
commit e10632e7d5

View file

@ -17,6 +17,7 @@ import ../generic {
else
pkgs.binutils;
gcc = if stdenv.isDarwin then pkgs.gccApple.gcc else pkgs.gcc.gcc;
coreutils = pkgs.coreutils;
shell = pkgs.bash + "/bin/sh";
};