mirror of
https://github.com/git/git.git
synced 2024-11-27 03:53:55 +08:00
Merge branch 'tb/dev-build-pedantic-fix'
Developer build procedure fix. * tb/dev-build-pedantic-fix: config.mak.dev: fix typo when enabling -Wpedantic
This commit is contained in:
commit
d319ad5704
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user