diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2016-06-05 23:05:07 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2016-06-05 23:05:07 +0000 |
commit | 6a0c9674b1bf8dd4b0fea3c5556658198a9404ef (patch) | |
tree | d8889ea6274128730eab94c931933443ce5e5efd /targets | |
parent | f6ed7b91889f9da71cfca85da102895a43c42bd6 (diff) | |
download | FreeBSD-src-6a0c9674b1bf8dd4b0fea3c5556658198a9404ef.zip FreeBSD-src-6a0c9674b1bf8dd4b0fea3c5556658198a9404ef.tar.gz |
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
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 1b9b339..98064ff 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> |