* Make doesn't like newlines.
svn path=/nixpkgs/trunk/; revision=16210
This commit is contained in:
parent
26453f9074
commit
cc28087b5a
1 changed files with 2 additions and 4 deletions
|
@ -27,10 +27,8 @@ stdenv.mkDerivation {
|
|||
BUILD_OPT = "1";
|
||||
|
||||
makeFlags =
|
||||
''
|
||||
NSPR_CONFIG_STATUS= NSDISTMODE=copy BUILD_OPT=1 SOURCE_PREFIX=\$(out)
|
||||
${if stdenv.is64bit then "USE_64=1" else ""}
|
||||
'';
|
||||
["NSPR_CONFIG_STATUS=" "NSDISTMODE=copy" "BUILD_OPT=1" "SOURCE_PREFIX=\$(out)"]
|
||||
++ stdenv.lib.optionals stdenv.is64bit "USE_64=1";
|
||||
|
||||
buildFlags = "nss_build_all";
|
||||
|
||||
|
|
Loading…
Reference in a new issue