diff options
author | bde <bde@FreeBSD.org> | 1998-04-28 05:31:41 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-04-28 05:31:41 +0000 |
commit | a4d60e5ed784b07559eb90d74ea9f624a237e577 (patch) | |
tree | 68c37e7c2cbb8f98705611b306cb7f78676a279c /usr.sbin/ipsend/Makefile | |
parent | 80f5545693f1e8a351e28d316587f2dfbeb3daf1 (diff) | |
download | FreeBSD-src-a4d60e5ed784b07559eb90d74ea9f624a237e577.zip FreeBSD-src-a4d60e5ed784b07559eb90d74ea9f624a237e577.tar.gz |
Fixed syntax error for `make checkdpadd'. libfl.a should never be
used. ${LIBFL} is set to a weird value in an attempt to inhibit
its use, but only breaks properly in some contexts.
Fixed the usual style bugs for DPADD and LDADD (disorder, and += for the
initial assignment).
Diffstat (limited to 'usr.sbin/ipsend/Makefile')
-rw-r--r-- | usr.sbin/ipsend/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ipsend/Makefile b/usr.sbin/ipsend/Makefile index 9241729..f537532 100644 --- a/usr.sbin/ipsend/Makefile +++ b/usr.sbin/ipsend/Makefile @@ -15,8 +15,8 @@ CFLAGS+=-DDOSOCKET -DIPL_NAME=\"/dev/ipl\" \ -I${.CURDIR}/../../contrib/ipfilter/iplang \ -I${.CURDIR}/../../contrib/ipfilter -LDADD+= -lfl -DPADD+= ${LIBFL} +DPADD= ${LIBL} +LDADD= -ll CLEANFILES+= y.tab.h |