diff options
author | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2003-11-20 23:23:10 +0000 |
---|---|---|
committer | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2003-11-20 23:23:10 +0000 |
commit | 2ee732eaeeed10b5fab41f27f0d2e90cc2286d86 (patch) | |
tree | 99de8655ffbb7f0e8158d993b7e3153167883291 /usr.sbin/authpf/Makefile | |
parent | 9bfb32fcb85b8cd467e4de8f4df1df52ade09c8b (diff) |
remove -Werror from userland builds, to give us a chance to
use more verbose warning options if desired.
ok millert@, henning@, david@
Diffstat (limited to 'usr.sbin/authpf/Makefile')
-rw-r--r-- | usr.sbin/authpf/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/authpf/Makefile b/usr.sbin/authpf/Makefile index 34b140d3313..0b4cb33192a 100644 --- a/usr.sbin/authpf/Makefile +++ b/usr.sbin/authpf/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2003/08/21 19:13:23 frantzen Exp $ +# $OpenBSD: Makefile,v 1.10 2003/11/20 23:23:09 avsm Exp $ PROG= authpf MAN= authpf.8 @@ -7,7 +7,7 @@ BINGRP= authpf BINMODE= 6555 SRCS= authpf.c parse.y pfctl_parser.c pf_print_state.c pfctl_altq.c SRCS+= pfctl_radix.c pfctl_osfp.c -CFLAGS+= -I${.CURDIR}/../../sbin/pfctl -Wall -Werror +CFLAGS+= -I${.CURDIR}/../../sbin/pfctl -Wall .PATH: ${.CURDIR}/../../sbin/pfctl LDADD+= -lm |