From: Michael Tremer Date: Wed, 27 Sep 2023 15:11:52 +0000 (+0000) Subject: parser: Do not compile with -fno-analyzer X-Git-Tag: 0.9.30~1628 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3961468ceea22e211e7bfccd720fd4b776ed7c03;p=pakfire.git parser: Do not compile with -fno-analyzer The flex/bison-generated code is having too many problems to make this output any useful. Signed-off-by: Michael Tremer --- diff --git a/Makefile.am b/Makefile.am index 2915e6135..df06fd713 100644 --- a/Makefile.am +++ b/Makefile.am @@ -201,7 +201,8 @@ libpakfire_parser_la_SOURCES = \ libpakfire_parser_la_CFLAGS = \ $(AM_CFLAGS) \ - $(JSON_C_CFLAGS) + $(JSON_C_CFLAGS) \ + -fno-analyzer libpakfire_parser_la_CPPFLAGS = \ $(AM_CPPFLAGS) \