aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Łyszczek <michal.lyszczek@bofc.pl>2018-04-13 13:49:10 +0200
committerMichał Łyszczek <michal.lyszczek@bofc.pl>2018-04-13 13:49:10 +0200
commitcfbc63d5efd45c00b171f2201bd20429182b1254 (patch)
tree374a3fc71a9e38b03ba2d50818d9e1ccd39b9258
parent9fe943c7085fd15e8a76237e363c9193e909ec7c (diff)
downloadembedlog-cfbc63d5efd45c00b171f2201bd20429182b1254.tar.gz
embedlog-cfbc63d5efd45c00b171f2201bd20429182b1254.tar.bz2
embedlog-cfbc63d5efd45c00b171f2201bd20429182b1254.zip
fix: broken static analyzer (how did it even work?)
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 4de0eaf..167cd21 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -20,7 +20,7 @@ MOSTLYCLEANFILES = $(analyze_plists)
$(analyze_plists): %.plist: %.c
@echo " CCSA " $@
- @clang --analyze -I.. $< -o $@
+ @clang --analyze -I.. -DHAVE_CONFIG_H=1 $< -o $@
analyze: $(analyze_plists)