summaryrefslogtreecommitdiffstats
path: root/lib/bb/data.py
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2013-03-19 15:28:51 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-10 13:06:30 +0100
commit7c568132c54a21161de28907159f902462f1e2bb (patch)
tree5d9ab20bacec63c10a158d3f54ae3636646e0c42 /lib/bb/data.py
parent970e2e6f079fa9a49646f86364eae9a4ee241f90 (diff)
downloadbitbake-contrib-7c568132c54a21161de28907159f902462f1e2bb.tar.gz
data.py: Add a warning when expandKeys overwrites an existing key
When two variables are defined as: ${var} = "bar" foo = "foobar" The value of 'foo' when ${var} == foo becomes indeterminate. We want to warn a user when this situation has been encountered so they can take corrective actions. In the above example usually foo == bar, unless multilibs are enabled. Then ml-foo = "ml-foobar". Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/data.py')
-rw-r--r--lib/bb/data.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/bb/data.py b/lib/bb/data.py
index 7047f4893..110666ca2 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -158,6 +158,11 @@ def expandKeys(alterdata, readdata = None):
for key in todolist:
ekey = todolist[key]
+ if ekey in keys(alterdata):
+ val = alterdata.getVar(key, 0)
+ newval = alterdata.getVar(ekey, 0)
+ if val is not None and newval is not None:
+ bb.warn("Variable key %s (%s) replaces original key %s (%s)." % (key, val, ekey, newval))
alterdata.renameVar(key, ekey)
def inheritFromOS(d, savedenv, permitted):