summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse')
-rw-r--r--bitbake/lib/bb/parse/ast.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index 722d542ed6..547ea679b5 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -374,8 +374,7 @@ def multi_finalize(fn, d):
374 safe_d = d 374 safe_d = d
375 d = bb.data.createCopy(safe_d) 375 d = bb.data.createCopy(safe_d)
376 try: 376 try:
377 if not onlyfinalise or "default" in onlyfinalise: 377 finalize(fn, d)
378 finalize(fn, d)
379 except bb.parse.SkipPackage as e: 378 except bb.parse.SkipPackage as e:
380 bb.data.setVar("__SKIPPED", e.args[0], d) 379 bb.data.setVar("__SKIPPED", e.args[0], d)
381 datastores = {"": safe_d} 380 datastores = {"": safe_d}