summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-10-05 15:35:55 +0000
committerPeter Simons <simons@cryp.to>2010-10-05 15:35:55 +0000
commit2291f661b03f29fd59549165721a1426e5d04264 (patch)
tree0ece3cfcb1eb82616ca90deed505cd965ddd813b
parentd61c959049751d6e5ab2b45aff0d44c4059fab56 (diff)
downloadnixlib-2291f661b03f29fd59549165721a1426e5d04264.tar
nixlib-2291f661b03f29fd59549165721a1426e5d04264.tar.gz
nixlib-2291f661b03f29fd59549165721a1426e5d04264.tar.bz2
nixlib-2291f661b03f29fd59549165721a1426e5d04264.tar.lz
nixlib-2291f661b03f29fd59549165721a1426e5d04264.tar.xz
nixlib-2291f661b03f29fd59549165721a1426e5d04264.tar.zst
nixlib-2291f661b03f29fd59549165721a1426e5d04264.zip
pkgs/development/libraries/pcre: fixed misspelled CPPFLAGS
svn path=/nixpkgs/branches/stdenv-updates/; revision=24082
-rw-r--r--pkgs/development/libraries/pcre/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix
index 141c06f00b8d..ccef9d08f734 100644
--- a/pkgs/development/libraries/pcre/default.nix
+++ b/pkgs/development/libraries/pcre/default.nix
@@ -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 ""}
   '';