3
0
Fork 0
forked from mirrors/nixpkgs

pkgs/development/libraries/pcre: fixed misspelled CPPFLAGS

svn path=/nixpkgs/branches/stdenv-updates/; revision=24082
This commit is contained in:
Peter Simons 2010-10-05 15:35:55 +00:00
parent d61c959049
commit 2291f661b0

View file

@ -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 ""}
'';