Skip to content

Commit

Permalink
Merge pull request #37688 from dtzWill/fix/no-libintl-musl
Browse files Browse the repository at this point in the history
gettext: don't add -lintl on musl, either
  • Loading branch information
dtzWill authored Mar 23, 2018
2 parents eae4eec + b59fd70 commit 4ae1790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/gettext/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" && !hostPlatform.isMusl;

enableParallelBuilding = true;

Expand Down

0 comments on commit 4ae1790

Please sign in to comment.