tinyemu: set CC and STRIP in makeFlags
This commit is contained in:
parent
26ab628331
commit
4623d107eb
1 changed files with 6 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue