diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-04 12:55:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-05 09:24:00 +0100 |
commit | 934627728dc94d86d48cd6e17e555457dc06309e (patch) | |
tree | e15853a586c384ed6a9d79eb3d841d957dde4aac /bitbake | |
parent | 7d216bcc1e68fdc4503e602be5a7fe346d48d31d (diff) | |
download | poky-934627728dc94d86d48cd6e17e555457dc06309e.tar.gz |
bitbake: cookerdata: Change emphasis in error message to be clearer to users
Users are misreading this message. Reorder the wording to make
the empahsis clearer on the shell environment.
(Bitbake rev: dd2475e36af470ea47b0841d181444e36aa6e947)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/cookerdata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index fe5696c704..d54ac932e5 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
@@ -248,7 +248,7 @@ class CookerDataBuilder(object): | |||
248 | for k in cookercfg.env: | 248 | for k in cookercfg.env: |
249 | self.savedenv.setVar(k, cookercfg.env[k]) | 249 | self.savedenv.setVar(k, cookercfg.env[k]) |
250 | if k in bb.data_smart.bitbake_renamed_vars: | 250 | if k in bb.data_smart.bitbake_renamed_vars: |
251 | bb.error('Variable %s from the shell environment has been renamed to %s' % (k, bb.data_smart.bitbake_renamed_vars[k])) | 251 | bb.error('Shell environment variable %s has been renamed to %s' % (k, bb.data_smart.bitbake_renamed_vars[k])) |
252 | bb.fatal("Exiting to allow enviroment variables to be corrected") | 252 | bb.fatal("Exiting to allow enviroment variables to be corrected") |
253 | 253 | ||
254 | filtered_keys = bb.utils.approved_variables() | 254 | filtered_keys = bb.utils.approved_variables() |