Merge #276792: stabber: disable blanket -Werror

...into staging-next
This commit is contained in:
Vladimír Čunát 2023-12-31 15:21:34 +01:00
commit b297ecacbd
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -15,6 +15,11 @@ stdenv.mkDerivation {
sha256 = "0042nbgagl4gcxa5fj7bikjdi1gbk0jwyqnzc5lswpb0l5y0i1ql";
};
postPatch = ''
# New toolchainsd like gcc-13 trigger warnings and fail the build.
substituteInPlace configure.ac --replace "-Werror" ""
'';
preAutoreconf = ''
mkdir m4
'';