svn commit: r291314 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Wed Nov 25 19:13:41 UTC 2015


Author: bdrewery
Date: Wed Nov 25 19:13:39 2015
New Revision: 291314
URL: https://svnweb.freebsd.org/changeset/base/291314

Log:
  META MODE: Don't truncate DIRDEPS for bootstrapping during gendirdeps.
  
  Reviewed by:	sjg
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/meta.autodep.mk

Modified: head/share/mk/meta.autodep.mk
==============================================================================
--- head/share/mk/meta.autodep.mk	Wed Nov 25 19:13:35 2015	(r291313)
+++ head/share/mk/meta.autodep.mk	Wed Nov 25 19:13:39 2015	(r291314)
@@ -191,7 +191,7 @@ gendirdeps:	${_DEPENDFILE}
 # anything which matches ${_OBJROOT}* but not ${_OBJTOP}*
 # needs to be qualified in DIRDEPS
 # The pseudo machine "host" is used for HOST_TARGET
-DIRDEPS = \
+DIRDEPS += \
 	${DPADD:M${_OBJTOP}*:H:C,${_OBJTOP}[^/]*/,,:N.:O:u} \
 	${DPADD:M${_OBJROOT}*:N${_OBJTOP}*:H:S,${_OBJROOT},,:C,^([^/]+)/(.*),\2.\1,:S,${HOST_TARGET}$,host,:N.*:O:u}
 


More information about the svn-src-all mailing list