Only add -Werror if in fact we have set WARNS or WFORMAT to >0
This commit is contained in:
parent
46adf91a3b
commit
45703321ea
@ -13,6 +13,9 @@ CFLAGS += -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith
|
||||
# XXX Delete -Wuninitialized by default for now -- the compiler doesn't
|
||||
# XXX always get it right.
|
||||
CFLAGS += -Wno-uninitialized
|
||||
. if !defined(NO_WERROR)
|
||||
CFLAGS += -Werror
|
||||
. endif
|
||||
. endif
|
||||
. if ${WARNS} > 1
|
||||
CFLAGS += -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow
|
||||
@ -25,11 +28,10 @@ WFORMAT = 1
|
||||
. if defined(WFORMAT)
|
||||
. if ${WFORMAT} > 0
|
||||
CFLAGS += -Wnon-const-format -Wno-format-extra-args
|
||||
. endif
|
||||
. endif
|
||||
|
||||
. if !defined(NO_WERROR)
|
||||
. if !defined(NO_WERROR)
|
||||
CFLAGS += -Werror
|
||||
. endif
|
||||
. endif
|
||||
. endif
|
||||
.endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user