diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-30 10:27:49 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-30 10:34:57 +0100 |
commit | fd51900f203ae997b0f606f94ab87c12e37696c0 (patch) | |
tree | f604f3bf934684594e490f7ee2fd786068fdf8ed /meta/classes | |
parent | 163b27bdfe323b648929240375aaf251e8d5edf4 (diff) | |
download | openembedded-core-fd51900f203ae997b0f606f94ab87c12e37696c0.tar.gz openembedded-core-fd51900f203ae997b0f606f94ab87c12e37696c0.tar.bz2 openembedded-core-fd51900f203ae997b0f606f94ab87c12e37696c0.zip |
ccache: Use MULTIMACH_TARGET_SYS not HOST_SYS
I suspect this was a typo and that TARGET_SYS makes more sense here. Its
also the only remaining user of MULTIMACH_HOST_SYS in OE-Core. Change it.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/ccache.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/ccache.bbclass b/meta/classes/ccache.bbclass index 9713feabcb..d58c8f6e57 100644 --- a/meta/classes/ccache.bbclass +++ b/meta/classes/ccache.bbclass @@ -1,5 +1,5 @@ CCACHE = "${@bb.utils.which(d.getVar('PATH'), 'ccache') and 'ccache '}" -export CCACHE_DIR ?= "${TMPDIR}/ccache/${MULTIMACH_HOST_SYS}/${PN}" +export CCACHE_DIR ?= "${TMPDIR}/ccache/${MULTIMACH_TARGET_SYS}/${PN}" CCACHE_DISABLE[unexport] = "1" # We need to stop ccache considering the current directory or the |