Merge pull request #37688 from dtzWill/fix/no-libintl-musl

gettext: don't add -lintl on musl, either
This commit is contained in:
Will Dietz 2018-03-23 11:26:26 -05:00 committed by GitHub
commit 4ae1790f6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;