summaryrefslogtreecommitdiffstats
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-03-16 22:09:42 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-16 22:11:15 +0000
commite022b27d189c1dcc7b3baea2b99dba8d724e6e2b (patch)
tree6cc386f1f7080d4387262e29dffb8be697527bf4 /meta/classes/base.bbclass
parent818dced4e4409c112b35022b86b830b0c2a2a7da (diff)
downloadopenembedded-core-e022b27d189c1dcc7b3baea2b99dba8d724e6e2b.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> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-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}"