svn commit: r288201 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Fri Sep 25 00:07:32 UTC 2015


Author: bdrewery
Date: Fri Sep 25 00:07:31 2015
New Revision: 288201
URL: https://svnweb.freebsd.org/changeset/base/288201

Log:
  Don't recurse with cleanobj.
  
  bsd.obj.mk handles the needs fine.  When an objdir exists it will
  just rm -Rf the objdir.  When it does not exist though it will
  call 'clean' and 'cleandepend', which properly recurse in bsd.progs.mk.
  
  MFC after:	2 weeks
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/bsd.progs.mk

Modified: head/share/mk/bsd.progs.mk
==============================================================================
--- head/share/mk/bsd.progs.mk	Thu Sep 24 23:23:58 2015	(r288200)
+++ head/share/mk/bsd.progs.mk	Fri Sep 25 00:07:31 2015	(r288201)
@@ -84,7 +84,7 @@ $v =
 
 .if !empty(PROGS) && !defined(_RECURSING_PROGS)
 # tell progs.mk we might want to install things
-PROGS_TARGETS+= checkdpadd clean cleandepend cleandir cleanobj depend install
+PROGS_TARGETS+= checkdpadd clean cleandepend cleandir depend install
 
 .for p in ${PROGS}
 .if defined(PROGS_CXX) && !empty(PROGS_CXX:M$p)


More information about the svn-src-all mailing list