svn commit: r203563 - head/tools/build/mk

Antoine Brodin antoine at FreeBSD.org
Sat Feb 6 20:06:07 UTC 2010


Author: antoine
Date: Sat Feb  6 20:06:06 2010
New Revision: 203563
URL: http://svn.freebsd.org/changeset/base/203563

Log:
  Move rescue/ping6 from files to remove when MK_INET6=no to file to remove
  when MK_INET6_SUPPORT=no.  (MK_INET6=no implies MK_INET6_SUPPORT=no)

Modified:
  head/tools/build/mk/OptionalObsoleteFiles.inc

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Sat Feb  6 20:02:56 2010	(r203562)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Sat Feb  6 20:06:06 2010	(r203563)
@@ -899,7 +899,6 @@ OLD_FILES+=usr/include/openssl/idea.h
 .endif
 
 .if ${MK_INET6} == no
-OLD_FILES+=rescue/ping6
 OLD_FILES+=sbin/ping6
 OLD_FILES+=sbin/rtsol
 OLD_FILES+=usr/sbin/faithd
@@ -927,6 +926,10 @@ OLD_FILES+=usr/share/man/man8/rtsold.8.g
 OLD_FILES+=usr/share/man/man8/traceroute6.8.gz
 .endif
 
+.if ${MK_INET6_SUPPORT} == no
+OLD_FILES+=rescue/ping6
+.endif
+
 #.if ${MK_INFO} == no
 # to be filled in
 #.endif


More information about the svn-src-head mailing list