diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2017-03-16 22:09:42 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-16 22:11:32 +0000 |
commit | 8aebe890fde0fe350efff3610325005a44b8f2a8 (patch) | |
tree | c9c497a6cd5ee8bc769353bde85e7006ec02a74b /meta/classes | |
parent | ec1f1c4abe1d40708fefd56f01c58fff38f28960 (diff) | |
download | poky-8aebe890fde0fe350efff3610325005a44b8f2a8.tar.gz |
classes/base: reformat HOSTTOOLS error
Adjust the message slightly to make it clearer, in particular mentioning
the HOSTTOOLS variable.
(From OE-Core rev: e022b27d189c1dcc7b3baea2b99dba8d724e6e2b)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 2 |
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): | |||
136 | else: | 136 | else: |
137 | notfound.append(tool) | 137 | notfound.append(tool) |
138 | if notfound and fatal: | 138 | if notfound and fatal: |
139 | bb.fatal("These tools appear to be unavailable in PATH, please install them in order to proceed:\n%s" % " ".join(notfound)) | 139 | 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)) |
140 | 140 | ||
141 | addtask fetch | 141 | addtask fetch |
142 | do_fetch[dirs] = "${DL_DIR}" | 142 | do_fetch[dirs] = "${DL_DIR}" |