Skip to content

Commit d319ad5

Browse files
committed
Merge branch 'tb/dev-build-pedantic-fix'
Developer build procedure fix. * tb/dev-build-pedantic-fix: config.mak.dev: fix typo when enabling -Wpedantic
2 parents 76f4967 + df32729 commit d319ad5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.mak.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ endif
1010
DEVELOPER_CFLAGS += -Wall
1111
ifeq ($(filter no-pedantic,$(DEVOPTS)),)
1212
DEVELOPER_CFLAGS += -pedantic
13-
ifneq (($or $(filter gcc5,$(COMPILER_FEATURES)),$(filter clang4,$(COMPILER_FEATURES))),)
13+
ifneq ($(or $(filter gcc5,$(COMPILER_FEATURES)),$(filter clang4,$(COMPILER_FEATURES))),)
1414
DEVELOPER_CFLAGS += -Wpedantic
1515
ifneq ($(filter gcc10,$(COMPILER_FEATURES)),)
1616
ifeq ($(uname_S),MINGW)

0 commit comments

Comments
 (0)