fix nonexistent cc path in bootstrap stdenv
This commit is contained in:
parent
e26b421b71
commit
3790cb7d43
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue