Don't include /no-such-path in buildInputs
This commit is contained in:
parent
42d94b6f15
commit
d72538be8d
@ -31,7 +31,7 @@ rec {
|
|||||||
shell = "/bin/bash";
|
shell = "/bin/bash";
|
||||||
initialPath = [ bootstrapTools ];
|
initialPath = [ bootstrapTools ];
|
||||||
fetchurlBoot = fetchurl;
|
fetchurlBoot = fetchurl;
|
||||||
cc = "/no-such-path";
|
cc = null;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
cc = if isNull gccPlain
|
cc = if isNull gccPlain
|
||||||
then "/no-such-path"
|
then null
|
||||||
else lib.makeOverridable (import ../../build-support/cc-wrapper) {
|
else lib.makeOverridable (import ../../build-support/cc-wrapper) {
|
||||||
nativeTools = false;
|
nativeTools = false;
|
||||||
nativeLibc = false;
|
nativeLibc = false;
|
||||||
|
@ -98,7 +98,7 @@ rec {
|
|||||||
|
|
||||||
|
|
||||||
stdenvBoot0 = makeStdenv {
|
stdenvBoot0 = makeStdenv {
|
||||||
cc = "/no-such-path";
|
cc = null;
|
||||||
fetchurl = null;
|
fetchurl = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user