diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2017-07-03 22:21:48 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2017-07-03 22:21:48 +0000 |
commit | fb2e42210df5ba52997cb02647916c5caec7aa9b (patch) | |
tree | 3ad32e9b88a6ba9cdb2c08bdb1a6545e9d35e416 /usr.sbin/npppd | |
parent | ca6781ba45bda9ef27b58751e9e8716a91885673 (diff) |
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/npppd')
-rw-r--r-- | usr.sbin/npppd/npppd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/npppd/npppd/Makefile b/usr.sbin/npppd/npppd/Makefile index eadc7f621ce..849f618b489 100644 --- a/usr.sbin/npppd/npppd/Makefile +++ b/usr.sbin/npppd/npppd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.20 2017/05/30 17:52:05 yasuoka Exp $ +# $OpenBSD: Makefile,v 1.21 2017/07/03 22:21:47 espie Exp $ NPPPD_COMMON_DIR= ${.CURDIR}/../common @@ -33,6 +33,7 @@ CPPFLAGS+= -DUSE_NPPPD_PIPEX CPPFLAGS+= -DUSE_NPPPD_RADIUS CPPFLAGS+= -DUSE_SA_COOKIE +YFLAGS= LDADD+= -levent -lradius -lcrypto -ly -lutil DPADD+= ${LIBEVENT} ${LIBRADIUS} ${LIBCRYPTO} ${LIBY} ${LIBUTIL} |