summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py
index 439c36593d..84f5355e42 100644
--- a/bitbake/lib/bb/data.py
+++ b/bitbake/lib/bb/data.py
@@ -159,7 +159,7 @@ def expandKeys(alterdata, readdata = None):
159 159
160 # These two for loops are split for performance to maximise the 160 # These two for loops are split for performance to maximise the
161 # usefulness of the expand cache 161 # usefulness of the expand cache
162 for key in todolist: 162 for key in sorted(todolist):
163 ekey = todolist[key] 163 ekey = todolist[key]
164 newval = alterdata.getVar(ekey, 0) 164 newval = alterdata.getVar(ekey, 0)
165 if newval is not None: 165 if newval is not None: