aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-07-15 10:11:42 -0700
committerJunio C Hamano <gitster@pobox.com>2024-07-15 10:11:42 -0700
commitd319ad57044b44783e5fa11f1d17c54747388491 (patch)
tree52c05a62c78dd28a410e783d1cf3d6617091e90b
parent76f49679b1d96a36ada2d08f2bb3df211ad04bd6 (diff)
parentdf327298664ec9290d71c6086339823017f2caee (diff)
downloadgit-d319ad57044b44783e5fa11f1d17c54747388491.tar.gz
Merge branch 'tb/dev-build-pedantic-fix'
Developer build procedure fix. * tb/dev-build-pedantic-fix: config.mak.dev: fix typo when enabling -Wpedantic
-rw-r--r--config.mak.dev2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mak.dev b/config.mak.dev
index 1ce4c70613..5229c35484 100644
--- a/config.mak.dev
+++ b/config.mak.dev
@@ -10,7 +10,7 @@ endif
DEVELOPER_CFLAGS += -Wall
ifeq ($(filter no-pedantic,$(DEVOPTS)),)
DEVELOPER_CFLAGS += -pedantic
-ifneq (($or $(filter gcc5,$(COMPILER_FEATURES)),$(filter clang4,$(COMPILER_FEATURES))),)
+ifneq ($(or $(filter gcc5,$(COMPILER_FEATURES)),$(filter clang4,$(COMPILER_FEATURES))),)
DEVELOPER_CFLAGS += -Wpedantic
ifneq ($(filter gcc10,$(COMPILER_FEATURES)),)
ifeq ($(uname_S),MINGW)