diff options
author | 1996-06-02 18:55:43 +0000 | |
---|---|---|
committer | 1996-06-02 18:55:43 +0000 | |
commit | 7d6b9758a312089f77f148ea2fba8dd1451c9368 (patch) | |
tree | d3e202999a7e17f072e86fd116be2136e675be2e | |
parent | Updated to NetBSD 1.100 if_ed.c, and -Wall cleanup (diff) | |
download | wireguard-openbsd-7d6b9758a312089f77f148ea2fba8dd1451c9368.tar.xz wireguard-openbsd-7d6b9758a312089f77f148ea2fba8dd1451c9368.zip |
Our gcc needs -Wno-format for kernel compiles when using -Wall -Werror
-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 |