summary refs log tree commit diff
path: root/pkgs/development/libraries/ppl
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-06-01 20:46:33 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-06-01 20:46:33 +0200
commit6bc20ea278e0739d86903a38838dbdf3ba5d3305 (patch)
tree081b926640259284a07fa3afdab7c254f1a13ddb /pkgs/development/libraries/ppl
parenteb8a3315109e16e193f7ca07fcd6d05d507a1b06 (diff)
downloadnixpkgs-6bc20ea278e0739d86903a38838dbdf3ba5d3305.tar
nixpkgs-6bc20ea278e0739d86903a38838dbdf3ba5d3305.tar.gz
nixpkgs-6bc20ea278e0739d86903a38838dbdf3ba5d3305.tar.bz2
nixpkgs-6bc20ea278e0739d86903a38838dbdf3ba5d3305.tar.lz
nixpkgs-6bc20ea278e0739d86903a38838dbdf3ba5d3305.tar.xz
nixpkgs-6bc20ea278e0739d86903a38838dbdf3ba5d3305.tar.zst
nixpkgs-6bc20ea278e0739d86903a38838dbdf3ba5d3305.zip
undo #2522 merge except on darwin
It was only meant for darwin originally anyway.
See the PR for discussion.
Diffstat (limited to 'pkgs/development/libraries/ppl')
-rw-r--r--pkgs/development/libraries/ppl/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/ppl/default.nix b/pkgs/development/libraries/ppl/default.nix
index 2c22317a6ca..e3b1444b8cb 100644
--- a/pkgs/development/libraries/ppl/default.nix
+++ b/pkgs/development/libraries/ppl/default.nix
@@ -13,8 +13,9 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ perl gnum4 ];
   propagatedBuildInputs = [ gmpxx ];
 
-  configureFlags = [ "--disable-watchdog" "CPPFLAGS=-fexceptions" ] ++
+  configureFlags = [ "--disable-watchdog" ] ++
     stdenv.lib.optionals stdenv.isDarwin [
+      "CPPFLAGS=-fexceptions"
       "--disable-ppl_lcdd" "--disable-ppl_lpsol" "--disable-ppl_pips"
     ];