Merge pull request #37688 from dtzWill/fix/no-libintl-musl
gettext: don't add -lintl on musl, either
This commit is contained in:
commit
4ae1790f6d
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user