From 3961468ceea22e211e7bfccd720fd4b776ed7c03 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 27 Sep 2023 15:11:52 +0000 Subject: [PATCH] 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 --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) \ -- 2.47.2