diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-06-05 23:05:07 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-06-05 23:05:07 +0000 |
commit | f6b956175051428b9eb87dcb1855b21a55720bf6 (patch) | |
tree | d8889ea6274128730eab94c931933443ce5e5efd /targets | |
parent | 9c8b82a95f54a67a3acebde201d8a4918c69bee8 (diff) | |
download | src-f6b956175051428b9eb87dcb1855b21a55720bf6.tar.gz src-f6b956175051428b9eb87dcb1855b21a55720bf6.zip |
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
Notes
Notes:
svn path=/head/; revision=301469
Diffstat (limited to 'targets')
-rw-r--r-- | targets/pseudo/bootstrap-tools/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/targets/pseudo/bootstrap-tools/Makefile b/targets/pseudo/bootstrap-tools/Makefile index 1b9b339e2907..98064ff06b54 100644 --- a/targets/pseudo/bootstrap-tools/Makefile +++ b/targets/pseudo/bootstrap-tools/Makefile @@ -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> |