diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2017-04-28 17:01:01 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-01 08:56:24 +0100 |
commit | 8164c466943ffedff399009bf5547dba4f06d6c8 (patch) | |
tree | 6292c2936665a7248f9d454d157826106f5d6638 /meta/classes/base.bbclass | |
parent | 4fe59183dae7c556363bc885cfda11a38c0d2d47 (diff) | |
download | openembedded-core-contrib-8164c466943ffedff399009bf5547dba4f06d6c8.tar.gz |
bitbake.conf: Add HOSTTOOLS_DIR for ${TMPDIR}/hosttools
The path to where to install and find the tools copied from the host
environment is already used in a couple of places. This warrants it to
get its own variable.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r-- | meta/classes/base.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index e29821f199a..d95afb7b9b5 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -239,8 +239,8 @@ python base_eventhandler() { oe.utils.features_backfill("DISTRO_FEATURES", e.data) oe.utils.features_backfill("MACHINE_FEATURES", e.data) # Works with the line in layer.conf which changes PATH to point here - setup_hosttools_dir(d.expand('${TMPDIR}/hosttools'), 'HOSTTOOLS', d) - setup_hosttools_dir(d.expand('${TMPDIR}/hosttools'), 'HOSTTOOLS_NONFATAL', d, fatal=False) + setup_hosttools_dir(d.getVar('HOSTTOOLS_DIR'), 'HOSTTOOLS', d) + setup_hosttools_dir(d.getVar('HOSTTOOLS_DIR'), 'HOSTTOOLS_NONFATAL', d, fatal=False) if isinstance(e, bb.event.BuildStarted): localdata = bb.data.createCopy(e.data) |