summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-03-15 12:47:03 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-03-22 16:50:16 -0500
commit0a2ef043597359f48b071153aa008336b0fd14de (patch)
tree9c3967160952c4a8525760a3eb7a3622cef0d96c /pkgs/development/libraries/gettext
parentd9aaae55796e3bbbf654eab2c61d41c02dfb6b3f (diff)
downloadnixpkgs-0a2ef043597359f48b071153aa008336b0fd14de.tar
nixpkgs-0a2ef043597359f48b071153aa008336b0fd14de.tar.gz
nixpkgs-0a2ef043597359f48b071153aa008336b0fd14de.tar.bz2
nixpkgs-0a2ef043597359f48b071153aa008336b0fd14de.tar.lz
nixpkgs-0a2ef043597359f48b071153aa008336b0fd14de.tar.xz
nixpkgs-0a2ef043597359f48b071153aa008336b0fd14de.tar.zst
nixpkgs-0a2ef043597359f48b071153aa008336b0fd14de.zip
gettext: fixup
Diffstat (limited to 'pkgs/development/libraries/gettext')
-rw-r--r--pkgs/development/libraries/gettext/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index e5795951bf7..c3a74f73663 100644
--- a/pkgs/development/libraries/gettext/default.nix
+++ b/pkgs/development/libraries/gettext/default.nix
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
   buildInputs = stdenv.lib.optional (!stdenv.isLinux && !hostPlatform.isCygwin) libiconv;
 
   setupHook = ./gettext-setup-hook.sh;
-  gettextNeedsLdflags = !hostPlatform.libc != "glibc";
+  gettextNeedsLdflags = hostPlatform.libc != "glibc";
 
   enableParallelBuilding = true;