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

Baptiste Daroussin bapt at FreeBSD.org
Sat Dec 10 12:14:43 UTC 2016


Author: bapt
Date: Sat Dec 10 12:14:41 2016
New Revision: 309797
URL: https://svnweb.freebsd.org/changeset/base/309797

Log:
  Add entries to remove timed files with make delete-old if WITHOUT_TIMED is set
  
  PR:		213724
  Submitted by:	philippe.michel7 at sfr.fr
  MFC after:	2 days

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

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Sat Dec 10 12:02:32 2016	(r309796)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Sat Dec 10 12:14:41 2016	(r309797)
@@ -8059,6 +8059,13 @@ OLD_FILES+=usr/share/man/man1/colcrt.1.g
 OLD_FILES+=usr/share/man/man1/ul.1.gz
 .endif
 
+.if ${MK_TIMED} == no
+OLD_FILES+=usr/sbin/timed
+OLD_FILES+=usr/sbin/timedc
+OLD_FILES+=usr/share/man/man8/timed.8.gz
+OLD_FILES+=usr/share/man/man8/timedc.8.gz
+.endif
+
 .if ${MK_TOOLCHAIN} == no
 OLD_FILES+=usr/bin/addr2line
 OLD_FILES+=usr/bin/as


More information about the svn-src-head mailing list