diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-02-07 03:20:35 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-02-07 03:20:35 +0000 |
commit | c5cb75491217af807f22f80b2f60fa49e214667b (patch) | |
tree | 95e358419211550e30c78f2fed90831d633ee786 /sys | |
parent | fd810961f342cc02cd3dd1f50cd7553fc5271b4e (diff) |
add -Wno-uninitialized
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sun3/conf/Makefile.sun3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/sun3/conf/Makefile.sun3 b/sys/arch/sun3/conf/Makefile.sun3 index 2190bb19b49..787153cd726 100644 --- a/sys/arch/sun3/conf/Makefile.sun3 +++ b/sys/arch/sun3/conf/Makefile.sun3 @@ -38,7 +38,7 @@ XDEFS= -undef -D__OpenBSD__ -Dm68k -Dmc68000 CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ -Dmc68020 -Dsun3 ${XDEFS} CWARNFLAGS= -Werror -Wall -Wstrict-prototypes \ - -Wno-format \ + -Wno-format -Wno-uninitialized \ # -Wmissing-prototypes CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 -msoft-float -pipe AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE |