Merge pull request #171151 from mklca/libxcrypt-werror-fix

libxcrypt: prevent build failure on warnings
This commit is contained in:
Ryan Burns 2022-05-01 10:20:17 -07:00 committed by GitHub
commit 90ff5b954f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,6 +16,10 @@ stdenv.mkDerivation rec {
./autogen.sh
'';
configureFlags = [
"--disable-werror"
];
nativeBuildInputs = [ autoconf automake libtool pkg-config perl ];
doCheck = true;