diff options
author | 2014-05-08 19:06:35 +0000 | |
---|---|---|
committer | 2014-05-08 19:06:35 +0000 | |
commit | d44e8d53676280a8a343e681eb5da66975f0cc59 (patch) | |
tree | 7afcf20bab964fda8b5196a84a2fe9bb991e69fe | |
parent | Format string fixes. (diff) | |
download | wireguard-openbsd-d44e8d53676280a8a343e681eb5da66975f0cc59.tar.xz wireguard-openbsd-d44e8d53676280a8a343e681eb5da66975f0cc59.zip |
No longer build vax kernels with -Wno-format.
-rw-r--r-- | sys/arch/vax/conf/Makefile.vax | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/conf/Makefile.vax b/sys/arch/vax/conf/Makefile.vax index 1dab76a33b2..47753fc0cd5 100644 --- a/sys/arch/vax/conf/Makefile.vax +++ b/sys/arch/vax/conf/Makefile.vax @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.vax,v 1.70 2013/10/15 19:23:31 guenther Exp $ +# $OpenBSD: Makefile.vax,v 1.71 2014/05/08 19:06:35 miod Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -24,7 +24,7 @@ _archdir?= $S/arch/${_arch} INCLUDES= -nostdinc -I$S -I. -I$S/arch CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -MD -MP CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ - -Wno-main -Wno-uninitialized -Wno-format \ + -Wno-main -Wno-uninitialized \ -Wstack-larger-than-2047 CMACHFLAGS= |