Merge pull request #202214 from exarkun/libxcrypt-bionic
libxcrypt: Fix the build on Aarch64/Android by allowing warnings
This commit is contained in:
commit
1969d7d85c
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
"--enable-hashes=all"
|
||||
"--enable-obsolete-api=glibc"
|
||||
"--disable-failure-tokens"
|
||||
] ++ lib.optionals stdenv.hostPlatform.isMusl [
|
||||
] ++ lib.optionals (stdenv.hostPlatform.isMusl || stdenv.hostPlatform.libc == "bionic") [
|
||||
"--disable-werror"
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue