Merge pull request #123543 from stephank/fix-cc65-darwin

cc65: fix darwin build
This commit is contained in:
Anderson Torres 2021-05-18 17:34:59 -03:00 committed by GitHub
commit ca669d438f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ stdenv.mkDerivation rec {
sha256 = "01a15yvs455qp20hri2pbg2wqvcip0d50kb7dibi9427hqk9cnj4";
};
makeFlags = [ "PREFIX=${placeholder "out"}"];
makeFlags = [
"PREFIX=${placeholder "out"}"
"CC=${stdenv.cc.targetPrefix}cc"
];
meta = with lib; {
homepage = "https://cc65.github.io/";