diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-12-01 22:39:19 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-12-01 22:39:19 +0000 |
commit | 4f2cb9f0029d36adfde3ae4f4ffc857cdd79839a (patch) | |
tree | 1d6cffe582eccf3e02415ace88a072cf01493304 /sbin/ipf | |
parent | 5a962dd0c6413dda6134b0aee51e4e99a3f6d1c1 (diff) | |
download | FreeBSD-src-4f2cb9f0029d36adfde3ae4f4ffc857cdd79839a.zip FreeBSD-src-4f2cb9f0029d36adfde3ae4f4ffc857cdd79839a.tar.gz |
Don't add LIBADD=ipf to libipf itself.
This had no real impact since libipf is a static INTERNALLIB. It does conflict
with an assertion I am adding for LIBADD though.
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'sbin/ipf')
-rw-r--r-- | sbin/ipf/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sbin/ipf/Makefile.inc b/sbin/ipf/Makefile.inc index 79bdb8e..c4c44be 100644 --- a/sbin/ipf/Makefile.inc +++ b/sbin/ipf/Makefile.inc @@ -18,7 +18,9 @@ CFLAGS+= -DUSE_INET6 CFLAGS+= -DNOINET6 .endif +.if ${.CURDIR:M*/libipf} == "" LIBADD+= ipf +.endif CLEANFILES+= y.tab.c y.tab.h |