Date: Tue, 1 Dec 2015 22:39:19 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291621 - head/sbin/ipf Message-ID: <201512012239.tB1MdJiU018858@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Tue Dec 1 22:39:19 2015 New Revision: 291621 URL: https://svnweb.freebsd.org/changeset/base/291621 Log: 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 Modified: head/sbin/ipf/Makefile.inc Modified: head/sbin/ipf/Makefile.inc ============================================================================== --- head/sbin/ipf/Makefile.inc Tue Dec 1 22:20:04 2015 (r291620) +++ head/sbin/ipf/Makefile.inc Tue Dec 1 22:39:19 2015 (r291621) @@ -18,7 +18,9 @@ CFLAGS+= -DUSE_INET6 CFLAGS+= -DNOINET6 .endif +.if ${.CURDIR:M*/libipf} == "" LIBADD+= ipf +.endif CLEANFILES+= y.tab.c y.tab.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512012239.tB1MdJiU018858>