fix nonexistent cc path in bootstrap stdenv

This commit is contained in:
Jude Taylor 2015-06-18 13:44:40 -07:00
parent e26b421b71
commit 3790cb7d43

View file

@ -70,7 +70,7 @@ in rec {
name = "stdenv-darwin-boot-${toString step}";
cc = if isNull last then "/no-such-path" else import ../../build-support/cc-wrapper {
cc = if isNull last then "/dev/null" else import ../../build-support/cc-wrapper {
inherit shell;
inherit (last) stdenv;
inherit (last.pkgs.darwin) dyld;