From: Ævar Arnfjörð Bjarmason Date: Wed, 22 Sep 2021 22:08:02 +0000 (+0200) Subject: Makefile: pass -Wno-pendantic under GENERATE_COMPILATION_DATABASE=yes X-Git-Tag: v2.34.0-rc0~97^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dd20e4a6db0c5504f098f8e97eadf55b967056cd;p=thirdparty%2Fgit.git Makefile: pass -Wno-pendantic under GENERATE_COMPILATION_DATABASE=yes The same bug fixed in the "COMPUTE_HEADER_DEPENDENCIES=auto" mode in the preceding commit was also present with "GENERATE_COMPILATION_DATABASE=yes". Let's fix it so it works again with "DEVOPTS=1". Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 9573190f1d..e0fa1baa4b 100644 --- a/Makefile +++ b/Makefile @@ -1310,6 +1310,7 @@ endif ifeq ($(GENERATE_COMPILATION_DATABASE),yes) compdb_check = $(shell $(CC) $(ALL_CFLAGS) \ + -Wno-pedantic \ -c -MJ /dev/null \ -x c /dev/null -o /dev/null 2>&1; \ echo $$?)