svn commit: r301469 - head/targets/pseudo/bootstrap-tools

Bryan Drewery bdrewery at FreeBSD.org
Sun Jun 5 23:05:09 UTC 2016


Author: bdrewery
Date: Sun Jun  5 23:05:07 2016
New Revision: 301469
URL: https://svnweb.freebsd.org/changeset/base/301469

Log:
  DIRDEPS_BUILD: Fix bootstrap-tools not handling CCACHE_DIR properly.
  
  CCACHE_DIR needs to be resolved to its full path before processing
  legacy.meta or meta mode may see the change to the stats file.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/targets/pseudo/bootstrap-tools/Makefile

Modified: head/targets/pseudo/bootstrap-tools/Makefile
==============================================================================
--- head/targets/pseudo/bootstrap-tools/Makefile	Sun Jun  5 23:05:04 2016	(r301468)
+++ head/targets/pseudo/bootstrap-tools/Makefile	Sun Jun  5 23:05:07 2016	(r301469)
@@ -84,3 +84,6 @@ BSTCARGS= \
 # finally we build toolchain leveraging the above.
 bootstrap-toolchain:	.MAKE cross-tools
 	${BSTCENV} ${MAKE} -C ${.CURDIR:H:H} ${BSTCARGS} toolchain
+
+# Ensure CCACHE_DIR is ignored since we are processing .meta files here.
+.include <bsd.compiler.mk>


More information about the svn-src-head mailing list