forked from mirrors/nixpkgs
pkgs/development/libraries/pcre: fixed misspelled CPPFLAGS
svn path=/nixpkgs/branches/stdenv-updates/; revision=24082
This commit is contained in:
parent
d61c959049
commit
2291f661b0
|
@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
|||
# problem. In case we ever update the Darwin GCC version, the exception for
|
||||
# that platform ought to be removed.
|
||||
configureFlags = ''
|
||||
CPPFLAGS=-NDEBUG CFLAGS=-O3 CXXFLAGS=${if stdenv.isDarwin then "-O0" else "-O3"}
|
||||
CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=${if stdenv.isDarwin then "-O0" else "-O3"}
|
||||
${if unicodeSupport then "--enable-unicode-properties" else ""}
|
||||
${if !cplusplusSupport then "--disable-cpp" else ""}
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue