aboutsummaryrefslogtreecommitdiffstats
path: root/conf/local.conf
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-03-20 11:57:38 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-03-20 14:34:08 +1300
commit84fb2b1b29c84df1b62a403d071e5a862d149f84 (patch)
treeaad904f22f69dcdc3723eb44ea499b0b1db2dbb3 /conf/local.conf
parent51614fe5a0594606ddd1fd718c00d11d8e9c72fe (diff)
downloadopenembedded-core-contrib-84fb2b1b29c84df1b62a403d071e5a862d149f84.tar.gz
local.conf: fix HOSTTOOLS blocking parsing
In OE-Core master, HOSTTOOLS specifies a list of host-side tools to be symlinked into a directory that is placed in a filtered path, so that binaries used from the host are a controlled subset. This variable is acted upon at configuration parse time and if any tools are missing, parsing is terminated. We're not actually running any tasks, so we won't need to call most of the tools specified by HOSTTOOLS. There is one we definitely do need to run (gcc) so keep that one, but the rest can be moved to HOSTTOOLS_NONFATAL. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'conf/local.conf')
-rw-r--r--conf/local.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/conf/local.conf b/conf/local.conf
index 5a20371c4d..9fe38517b3 100644
--- a/conf/local.conf
+++ b/conf/local.conf
@@ -10,3 +10,10 @@ MACHINE = "qemux86"
# OE-Core basic distro configuration
DISTRO = ""
+# We're not doing any building, no need to error on missing host tools,
+# but move them to HOSTTOOLS_NONFATAL just in case any do get called
+# from anonymous python or python expressions
+HOSTTOOLS_NONFATAL := "${@d.getVar('HOSTTOOLS', True) or ''} ${@d.getVar('HOSTTOOLS_NONFATAL', True) or ''}"
+# We do definitely need gcc since populate_sdk_base.bbclass refers to
+# oe.utils.get_gcc_version() in a python expression
+HOSTTOOLS = "gcc"