Merge pull request #57820 from illegalprime/fix/tree-cross

tree: use $CC instead of cc to build
This commit is contained in:
Matthew Bauer 2019-03-19 17:48:56 -04:00 committed by GitHub
commit 0bf5c6acb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ stdenv.mkDerivation {
prefix=$out
MANDIR=$out/share/man/man1
${systemFlags}
CC="cc"
CC="$CC"
)
'';