zip: *Flags are lists
This commit is contained in:
parent
e49f0d4985
commit
76b774e89a
1 changed files with 5 additions and 2 deletions
|
@ -19,8 +19,11 @@ stdenv.mkDerivation {
|
|||
hardeningDisable = [ "format" ];
|
||||
|
||||
makefile = "unix/Makefile";
|
||||
buildFlags = if stdenv.isCygwin then "cygwin" else "generic";
|
||||
installFlags = "prefix=$(out) INSTALL=cp";
|
||||
buildFlags = if stdenv.isCygwin then [ "cygwin" ] else [ "generic" ];
|
||||
installFlags = [
|
||||
"prefix=${placeholder ''out''}"
|
||||
"INSTALL=cp"
|
||||
];
|
||||
|
||||
patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else [];
|
||||
|
||||
|
|
Loading…
Reference in a new issue