summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2017-07-03 22:21:47 +0000
committerespie <espie@openbsd.org>2017-07-03 22:21:47 +0000
commit186e29d5ec91e4d773cee4e8d674351727eba759 (patch)
tree98aed1d2cca7e71dc03a056e2f06ba6e0fec4417 /usr.sbin/httpd
parentsizeof(struct sockaddr_in) != sizeof(struct in_addr). (diff)
downloadwireguard-openbsd-186e29d5ec91e4d773cee4e8d674351727eba759.tar.xz
wireguard-openbsd-186e29d5ec91e4d773cee4e8d674351727eba759.zip
no need to generate y.tab.h if nothing uses it, set YFLAGS to nothing
instead of CLEANFILES += y.tab.h okay millert@
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r--usr.sbin/httpd/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/Makefile b/usr.sbin/httpd/Makefile
index 17cb0f78ebe..376667567d5 100644
--- a/usr.sbin/httpd/Makefile
+++ b/usr.sbin/httpd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.29 2016/09/28 12:02:17 reyk Exp $
+# $OpenBSD: Makefile,v 1.30 2017/07/03 22:21:47 espie Exp $
PROG= httpd
SRCS= parse.y
@@ -17,6 +17,6 @@ CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith
CFLAGS+= -Wsign-compare -Wcast-qual
-CLEANFILES+= y.tab.h
+YFLAGS=
.include <bsd.prog.mk>