summary refs log tree commit diff
path: root/pkgs/development/libraries/tdb
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-04-09 23:44:37 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-04-09 23:44:37 -0400
commita79a8f29bc509b2d51158846c9562e64e1239b4c (patch)
treeaad21af4ec95ec19091ab9c9e813baa544948e27 /pkgs/development/libraries/tdb
parent52566c3b7b5f96d198dd6e57e2db37012fd9b71b (diff)
downloadnixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.gz
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.bz2
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.lz
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.xz
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.tar.zst
nixpkgs-a79a8f29bc509b2d51158846c9562e64e1239b4c.zip
waf: use wafConfigureFlags for waf flags
This avoids the potential conflict between autoconf flags and the waf
flags. There is some overlap between the two but waf errors when it
doesn’t recognize the flag.
Diffstat (limited to 'pkgs/development/libraries/tdb')
-rw-r--r--pkgs/development/libraries/tdb/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/tdb/default.nix b/pkgs/development/libraries/tdb/default.nix
index e1e91be7373..4df80140aa5 100644
--- a/pkgs/development/libraries/tdb/default.nix
+++ b/pkgs/development/libraries/tdb/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
 
   wafPath = "buildtools/bin/waf";
 
-  configureFlags = [
+  wafConfigureFlags = [
     "--bundled-libraries=NONE"
     "--builtin-libraries=replace"
   ];