Merge pull request #167537 from NickCao/tinyemu-cross

tinyemu: set CC and STRIP in makeFlags
This commit is contained in:
Anderson Torres 2022-04-07 20:54:55 -03:00 committed by GitHub
commit b1a8ce20dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,12 @@ stdenv.mkDerivation rec {
openssl
];
makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ];
makeFlags = [
"CC:=$(CC)"
"STRIP:=$(STRIP)"
"DESTDIR=$(out)"
"bindir=/bin"
];
preInstall = ''
mkdir -p "$out/bin"