svn commit: r317658 - head/usr.bin

Bryan Drewery bdrewery at FreeBSD.org
Mon May 1 19:34:17 UTC 2017


Author: bdrewery
Date: Mon May  1 19:34:15 2017
New Revision: 317658
URL: https://svnweb.freebsd.org/changeset/base/317658

Log:
  Redo r288270: Hookup mkcsmapper_static and mkesdb_static for 'make clean'
  
  These are only built as part of the top-level 'build-tools' call for
  'make buildworld'.  They still need to be cleaned during the 'make clean'
  treewalks though.
  
  Reported by:	markj
  MFC after:	2 weeks
  Sponsored by:	Dell EMC Isilon

Modified:
  head/usr.bin/Makefile

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Mon May  1 18:53:47 2017	(r317657)
+++ head/usr.bin/Makefile	Mon May  1 19:34:15 2017	(r317658)
@@ -301,6 +301,12 @@ SUBDIR.${MK_UTMPX}+=	who
 SUBDIR.${MK_SVN}+=	svn
 SUBDIR.${MK_SVNLITE}+=	svn
 
+# These are normally only handled for build-tools.
+.if make(clean*)
+SUBDIR+=	mkcsmapper_static
+SUBDIR+=	mkesdb_static
+.endif
+
 .include <bsd.arch.inc.mk>
 
 SUBDIR:=	${SUBDIR:O:u}


More information about the svn-src-all mailing list