diff options
author | Maria Matejka <mq@ucw.cz> | 2019-08-17 08:54:08 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2020-05-01 15:19:12 +0200 |
commit | a08853a26989d343c507a41257dedcdea3befd73 (patch) | |
tree | 357877e4951d97ac1594c873a2abc6ea5633627a | |
parent | 5f60d14edeb48824d28e6393e7eb1aa50d5f2cd1 (diff) |
Static scanner and expensive debugging setup fix
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 2698e34d..da6cd206 100644 --- a/Makefile.in +++ b/Makefile.in @@ -186,7 +186,7 @@ tests_run: $(tests_targets_ok) STATIC_CHECKERS_ENABLE := nullability.NullableDereferenced nullability.NullablePassedToNonnull nullability.NullableReturnedFromNonnull optin.portability.UnixAPI valist.CopyToSelf valist.Uninitialized valist.Unterminated STATIC_CHECKERS_DISABLE := deadcode.DeadStores -STATIC_SCAN_FLAGS := --force-analyze-debug-code -o $(objdir)/static-scan/ $(addprefix -enable-checker ,$(STATIC_CHECKERS_ENABLE)) $(addprefix -disable-checker ,$(STATIC_CHECKERS_DISABLE)) +STATIC_SCAN_FLAGS := -o $(objdir)/static-scan/ $(addprefix -enable-checker ,$(STATIC_CHECKERS_ENABLE)) $(addprefix -disable-checker ,$(STATIC_CHECKERS_DISABLE)) static-scan: $(E)echo Running static code analysis diff --git a/configure.ac b/configure.ac index 96f66644..eabb3d56 100644 --- a/configure.ac +++ b/configure.ac @@ -79,7 +79,7 @@ AC_ARG_VAR([BISON], [location of the Bison program]) AC_ARG_VAR([M4], [location of the M4 program]) if test "$enable_debug_expensive" = yes; then - enable_debug = yes + enable_debug=yes fi if test "$srcdir" = . ; then |