From: Arran Cudbard-Bell Date: Fri, 25 Apr 2025 15:48:47 +0000 (-0400) Subject: Quiet clang scan complaining about how it's invoked. -c is redundant here. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d27b16dca0d3e8e81b2135aa67239e60a95e1870;p=thirdparty%2Ffreeradius-server.git Quiet clang scan complaining about how it's invoked. -c is redundant here. --- diff --git a/scripts/boiler.mk b/scripts/boiler.mk index fa6a241a8b..e0315f346b 100644 --- a/scripts/boiler.mk +++ b/scripts/boiler.mk @@ -349,8 +349,8 @@ endif define ANALYZE_C_CMDS $(Q)mkdir -p $(dir $@) $(Q)$(ECHO) SCAN $< - $(Q)$(strip ${ANALYZE.c} --analyze -Xanalyzer -analyzer-output=html -c $< -o $@ ${CPPFLAGS} \ - ${CFLAGS} ${SRC_CFLAGS} ${INCDIRS} $(addprefix -I,${SRC_INCDIRS}) ${SRC_DEFS} ${DEFS}) || (rm -f $@ && false) + $(Q)$(strip ${ANALYZE.c} --analyze -Xanalyzer -analyzer-output=html ${CPPFLAGS} \ + ${CFLAGS} ${SRC_CFLAGS} ${INCDIRS} $(addprefix -I,${SRC_INCDIRS}) ${SRC_DEFS} ${DEFS} -o $@ $<) || (rm -f $@ && false) $(Q)if $(ANALYZE_C_DUMP) && test -d "$@"; then \ echo "Decode with:"; \ echo -n "echo \""; \