diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2001-06-17 21:39:31 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2001-06-17 21:39:31 +0000 |
commit | 894bc04de8c828dcbffb66d90f26377e790cb08d (patch) | |
tree | 2d3658d73cec178ba11a9a85f6444e6cc4458f16 | |
parent | f56269aab7eaac45df2d374198a66ea160db3c8f (diff) |
Add -Wno-uninitialized.
-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 ba6e9d33de2..3ea529232db 100644 --- a/sys/arch/vax/conf/Makefile.vax +++ b/sys/arch/vax/conf/Makefile.vax @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.vax,v 1.14 2001/06/15 22:45:27 miod Exp $ +# $OpenBSD: Makefile.vax,v 1.15 2001/06/17 21:39:30 hugh Exp $ # $NetBSD: Makefile.vax,v 1.49 1999/07/26 05:20:49 cgd Exp $ # Makefile for OpenBSD/vax @@ -75,7 +75,7 @@ VAX= $S/arch/vax INCLUDES= -I. -I$S/arch -I$S -nostdinc CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ -D_VAX_INLINE_ -CWARNFLAGS?= -Werror -Wall -Wno-main -Wno-format +CWARNFLAGS?= -Werror -Wall -Wno-main -Wno-format -Wno-uninitialized CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE LINKFLAGS= -N -Ttext 80000000 -e start |