summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-07-01 00:21:53 +0000
committerChris Larson <clarson@kergoth.com>2004-07-01 00:21:53 +0000
commitcc83f35dce0b53017edabf87c79d34b29c726152 (patch)
tree688ca04339a6d67a335ebb57c50f50118fecd0cf /bin
parent8b5fe678ad6a62e7bfeda56b341f701706c12381 (diff)
downloadbitbake-cc83f35dce0b53017edabf87c79d34b29c726152.tar.gz
Move set_additional_vars call.
Diffstat (limited to 'bin')
-rw-r--r--bin/oe/parse/OEHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/oe/parse/OEHandler.py b/bin/oe/parse/OEHandler.py
index 5c1c7c70e..37690383b 100644
--- a/bin/oe/parse/OEHandler.py
+++ b/bin/oe/parse/OEHandler.py
@@ -121,7 +121,6 @@ def handle(fn, d = {}, include = 0):
if include == 0:
data.expandKeys(d)
data.update_data(d)
- set_additional_vars(fn, d, include)
anonqueue = data.getVar("__anonqueue", d, 1) or []
for anon in anonqueue:
data.setVar("__anonfunc", anon["content"], d)
@@ -139,6 +138,7 @@ def handle(fn, d = {}, include = 0):
raise
data.delVar("__anonqueue", d)
data.delVar("__anonfunc", d)
+ set_additional_vars(fn, d, include)
data.update_data(d)
for var in d.keys():