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

Dag-Erling Smørgrav des at FreeBSD.org
Sun Sep 22 20:32:28 UTC 2013


Author: des
Date: Sun Sep 22 20:32:28 2013
New Revision: 255802
URL: http://svnweb.freebsd.org/changeset/base/255802

Log:
  Remove drill(1) if MK_LDNS_UTILS is false.
  Remove host(1) if both MK_BIND and MK_LDNS_UTILS are false.
  
  Approved by:	re (blanket)

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

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Sun Sep 22 20:30:55 2013	(r255801)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Sun Sep 22 20:32:28 2013	(r255802)
@@ -214,7 +214,6 @@ OLD_FILES+=usr/share/man/man8/authpf-noi
 .if ${MK_BIND} == no
 OLD_FILES+=etc/periodic/daily/470.status-named
 OLD_FILES+=usr/bin/dig
-OLD_FILES+=usr/bin/host
 OLD_FILES+=usr/bin/nslookup
 OLD_FILES+=usr/bin/nsupdate
 OLD_FILES+=usr/include/lwres/context.h
@@ -270,7 +269,6 @@ OLD_FILES+=usr/share/doc/bind9/COPYRIGHT
 OLD_FILES+=usr/share/doc/bind9/FAQ
 OLD_FILES+=usr/share/doc/bind9/README
 OLD_FILES+=usr/share/man/man1/dig.1.gz
-OLD_FILES+=usr/share/man/man1/host.1.gz
 OLD_FILES+=usr/share/man/man1/nslookup.1.gz
 OLD_FILES+=usr/share/man/man3/lwres.3.gz
 OLD_FILES+=usr/share/man/man3/lwres_buffer.3.gz
@@ -3402,6 +3400,15 @@ OLD_FILES+=usr/lib32/private/libldns_p.a
 .endif
 .endif
 
+.if ${MK_LDNS_UTILS} == no
+OLD_FILES+=usr/bin/drill
+OLD_FILES+=usr/share/man/man1/drill.1.gz
+.if ${MK_BIND} == no
+OLD_FILES+=usr/bin/host
+OLD_FILES+=usr/share/man/man1/host.1.gz
+.endif
+.endif
+
 #.if ${MK_LIB32} == no
 # to be filled in
 #.endif


More information about the svn-src-all mailing list