aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-03-16 09:28:40 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-03-16 22:07:38 +1300
commitb81f5c38920007df83f55c10eea8375baa1828af (patch)
treeeb25c15f84f14300b79d311a1ea0c6c76b279a58
parent477805b913a6c4b4b630e42f08cd9e59f1e4e254 (diff)
downloadopenembedded-core-contrib-b81f5c38920007df83f55c10eea8375baa1828af.tar.gz
classes/base: reformat HOSTTOOLS error
Adjust the message slightly to make it clearer, in particular mentioning the HOSTTOOLS variable. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index fec351a890..cf8748a502 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -136,7 +136,7 @@ def setup_hosttools_dir(dest, toolsvar, d, fatal=True):
else:
notfound.append(tool)
if notfound and fatal:
- bb.fatal("These tools appear to be unavailable in PATH, please install them in order to proceed:\n%s" % " ".join(notfound))
+ bb.fatal("The following required tools (as specified by HOSTTOOLS) appear to be unavailable in PATH, please install them in order to proceed:\n %s" % " ".join(notfound))
addtask fetch
do_fetch[dirs] = "${DL_DIR}"