From 3790cb7d439c71ee4e5bddcda1f32d44ad4aa6d3 Mon Sep 17 00:00:00 2001 From: Jude Taylor Date: Thu, 18 Jun 2015 13:44:40 -0700 Subject: [PATCH] fix nonexistent cc path in bootstrap stdenv --- pkgs/stdenv/pure-darwin/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index d4b17a7909c..79925a2edfd 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -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;