diff options
Diffstat (limited to 'lib/bb/parse/ast.py')
-rw-r--r-- | lib/bb/parse/ast.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bb/parse/ast.py b/lib/bb/parse/ast.py index 722d542e..547ea679 100644 --- a/lib/bb/parse/ast.py +++ b/lib/bb/parse/ast.py @@ -374,8 +374,7 @@ def multi_finalize(fn, d): safe_d = d d = bb.data.createCopy(safe_d) try: - if not onlyfinalise or "default" in onlyfinalise: - finalize(fn, d) + finalize(fn, d) except bb.parse.SkipPackage as e: bb.data.setVar("__SKIPPED", e.args[0], d) datastores = {"": safe_d} |