svn commit: r289360 - head

Bryan Drewery bdrewery at FreeBSD.org
Thu Oct 15 05:26:13 UTC 2015


Author: bdrewery
Date: Thu Oct 15 05:26:11 2015
New Revision: 289360
URL: https://svnweb.freebsd.org/changeset/base/289360

Log:
  Add temporary workaround for .MAKE being applied to _worldtmp, since r251750.
  
  This was causing files to be removed from the objdir when -n was used.
  _worldtmp makes no sub-make calls.
  
  A more comprehensive solution is coming involving fine-grained '+' where
  appropriate.
  
  Sponsored by:	EMC / Isilon Storage Division
  MFC after:	1 week

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Thu Oct 15 04:22:56 2015	(r289359)
+++ head/Makefile.inc1	Thu Oct 15 05:26:11 2015	(r289360)
@@ -1062,7 +1062,7 @@ INSTALLKERNEL= ${_kernel}
 .endif
 .endfor
 
-buildkernel ${WMAKE_TGTS} ${.ALLTARGETS:M_*}: .MAKE
+buildkernel ${WMAKE_TGTS:N_worldtmp} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE
 
 #
 # buildkernel


More information about the svn-src-all mailing list