Fixing the evaluation of eval-release.nix. I don't understand why, but something ends up

evaluating glibc.hostDrv.


svn path=/nixpkgs/branches/stdenv-updates/; revision=25070
This commit is contained in:
Lluís Batlle i Rossell 2010-12-12 17:07:54 +00:00
parent 0fe27433af
commit e949c432a2

View File

@ -2988,7 +2988,7 @@ let
machHeaders = null;
hurdHeaders = null;
gccCross = null;
}) // { hostDrv = glibc212Cross; };
}) // (if crossSystem != null then { hostDrv = glibc212Cross; } else {});
glibc212Cross = forceBuildDrv (makeOverridable (import ../development/libraries/glibc-2.12)
(let crossGNU = (crossSystem != null && crossSystem.config == "i586-pc-gnu");