liblangtag: fix cross build
This commit is contained in:
@@ -43,9 +43,13 @@ stdenv.mkDerivation rec {
|
||||
cp "${language_subtag_registry}" data/language-subtag-registry
|
||||
'';
|
||||
|
||||
configureFlags = lib.optional (
|
||||
stdenv.hostPlatform.libc == "glibc"
|
||||
) "--with-locale-alias=${stdenv.cc.libc}/share/locale/locale.alias";
|
||||
configureFlags =
|
||||
[
|
||||
"ac_cv_va_copy=1"
|
||||
]
|
||||
++ lib.optional (
|
||||
stdenv.hostPlatform.libc == "glibc"
|
||||
) "--with-locale-alias=${stdenv.cc.libc}/share/locale/locale.alias";
|
||||
|
||||
buildInputs = [
|
||||
gettext
|
||||
|
||||
Reference in New Issue
Block a user