diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2014-01-18 05:54:53 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2014-01-18 05:54:53 +0000 |
commit | 7dc5604e11eec9135f58378678431ee785a75b8c (patch) | |
tree | dd11f8c4174da0ab949a8e9f7843df03707c1886 /sbin/iked/Makefile | |
parent | f3065c77d0cca5857a685d04097de6b8fea0ca84 (diff) |
Remove -Wbounded: it is now the compiler default.
Diffstat (limited to 'sbin/iked/Makefile')
-rw-r--r-- | sbin/iked/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/iked/Makefile b/sbin/iked/Makefile index 5d606aae5e0..c0621d2203d 100644 --- a/sbin/iked/Makefile +++ b/sbin/iked/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2013/11/14 12:26:38 markus Exp $ +# $OpenBSD: Makefile,v 1.10 2014/01/18 05:54:51 martynas Exp $ PROG= iked SRCS= ca.c chap_ms.c config.c control.c crypto.c dh.c \ @@ -15,7 +15,7 @@ CFLAGS+= -Wall -I${.CURDIR} CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual -CFLAGS+= -Wsign-compare -Wbounded +CFLAGS+= -Wsign-compare CLEANFILES+= y.tab.h ikev2_map.c eap_map.c GENERATED= ikev2_map.c eap_map.c |