diff options
author | 2001-06-17 21:39:30 +0000 | |
---|---|---|
committer | 2001-06-17 21:39:30 +0000 | |
commit | 4cf4062289b0dd1691a219154f0b20c310aefa8d (patch) | |
tree | b352f27e2d5d7f60485fa3b46fbf6362c6cd9f26 | |
parent | Don't pciaddr_do_resource_allocate if device is AGP to avoid conflict. (diff) | |
download | wireguard-openbsd-4cf4062289b0dd1691a219154f0b20c310aefa8d.tar.xz wireguard-openbsd-4cf4062289b0dd1691a219154f0b20c310aefa8d.zip |
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 |