diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2012-09-13 05:50:16 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2012-09-13 05:50:16 +0000 |
commit | 2d96a877cfb42f1748a18400a798af4fc9d95c5b (patch) | |
tree | 139c399cf47196a7fb981ea563faf9ecde136816 | |
parent | 1ad5931063928800aa8d6066db96e1ad6cd50769 (diff) |
There is no need to compile this with -Werror by default.
-rw-r--r-- | usr.sbin/iscsictl/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/iscsictl/Makefile b/usr.sbin/iscsictl/Makefile index 1781ab9799e..792761509fd 100644 --- a/usr.sbin/iscsictl/Makefile +++ b/usr.sbin/iscsictl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2012/09/12 09:19:54 haesbaert Exp $ +# $OpenBSD: Makefile,v 1.5 2012/09/13 05:50:15 claudio Exp $ .PATH: ${.CURDIR}/../iscsid @@ -8,12 +8,11 @@ SRCS+= util.c MAN= iscsictl.8 iscsi.conf.5 -CFLAGS+= -Wall -Werror +CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../iscsid -CDIAGFLAGS= YFLAGS= .include <bsd.prog.mk> |