aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/cookerdata.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-04 12:55:17 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-05 09:23:57 +0100
commitdd2475e36af470ea47b0841d181444e36aa6e947 (patch)
treea7f7cff452e2014580ee6176a03b687e18e97bfc /lib/bb/cookerdata.py
parent0ed800e19a3197f8e622c8d3b630aae384e60aba (diff)
downloadbitbake-dd2475e36af470ea47b0841d181444e36aa6e947.tar.gz
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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cookerdata.py')
-rw-r--r--lib/bb/cookerdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py
index fe5696c70..d54ac932e 100644
--- a/lib/bb/cookerdata.py
+++ b/lib/bb/cookerdata.py
@@ -248,7 +248,7 @@ class CookerDataBuilder(object):
for k in cookercfg.env:
self.savedenv.setVar(k, cookercfg.env[k])
if k in bb.data_smart.bitbake_renamed_vars:
- bb.error('Variable %s from the shell environment has been renamed to %s' % (k, bb.data_smart.bitbake_renamed_vars[k]))
+ bb.error('Shell environment variable %s has been renamed to %s' % (k, bb.data_smart.bitbake_renamed_vars[k]))
bb.fatal("Exiting to allow enviroment variables to be corrected")
filtered_keys = bb.utils.approved_variables()