summaryrefslogtreecommitdiffstats
path: root/lib/bb/data.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2007-08-13 21:00:50 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2007-08-13 21:00:50 +0000
commit6f28bbe7c91492dd970bfce4dd6a15521a8d70a1 (patch)
tree8c115e36cfccb9e4c8ded750897c93baa2c664bf /lib/bb/data.py
parent44c630f93dc130f881b178d73941bd6594ae7b51 (diff)
downloadbitbake-6f28bbe7c91492dd970bfce4dd6a15521a8d70a1.tar.gz
cooker.py: Start UI merge: Cleanup exit status handling and collect exit calls into one place. Move buildSetVars() function calls. Cleanup whitespace. Make some of the core functions more generic.
Diffstat (limited to 'lib/bb/data.py')
-rw-r--r--lib/bb/data.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/bb/data.py b/lib/bb/data.py
index 9782c9f54..b2025f069 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -288,6 +288,10 @@ def expandKeys(alterdata, readdata = None):
src = getVarFlag(key, i, readdata) or []
dest.extend(src)
setVarFlag(ekey, i, dest, alterdata)
+
+ if key in alterdata._special_values[i]:
+ alterdata._special_values[i].remove(key)
+ alterdata._special_values[i].add(ekey)
delVar(key, alterdata)