svn commit: r291621 - head/sbin/ipf

Bryan Drewery bdrewery at FreeBSD.org
Tue Dec 1 22:39:20 UTC 2015


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
 


More information about the svn-src-head mailing list