diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-06-02 18:55:44 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-06-02 18:55:44 +0000 |
commit | a6cd3b84a581bfc49e79b50c155eda873893f1ea (patch) | |
tree | 4d23cb378f7a88a2b9d184f87ab9d7be0a5c20bd /sys | |
parent | 1da1ec810b7a08b0e3e837b7adaef01c612407c0 (diff) |
Our gcc needs -Wno-format for kernel compiles when using -Wall -Werror
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amiga/conf/Makefile.amiga | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/amiga/conf/Makefile.amiga b/sys/arch/amiga/conf/Makefile.amiga index 7577876beec..e7caee2afc6 100644 --- a/sys/arch/amiga/conf/Makefile.amiga +++ b/sys/arch/amiga/conf/Makefile.amiga @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.amiga,v 1.14 1996/05/31 08:01:33 niklas Exp $ +# $OpenBSD: Makefile.amiga,v 1.15 1996/06/02 18:55:43 niklas Exp $ # $NetBSD: Makefile.amiga,v 1.45 1996/05/16 17:07:08 is Exp $ # Makefile for OpenBSD @@ -36,7 +36,8 @@ AMIGA= ../.. INCLUDES= -I. -I$S/arch -I$S CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -Dmc68020 -Damiga -CDIAGFLAGS= -Werror -Wall -Wstrict-prototypes -Wno-uninitialized +CDIAGFLAGS= -Werror -Wall -Wstrict-prototypes -Wno-uninitialized \ + -Wno-format .if empty(IDENT:M-DM68060) CMACHFLAGS= -m68020 -msoft-float |