From f22ac9149cc9ab96510bb377deb82cd9bceb95c1 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 1 Jun 2011 12:22:17 +0100 Subject: bitbake/parse/ast: We always need to finalize the default data since otherwise overrides to BBCLASSEXTEND may not be applied Signed-off-by: Richard Purdie --- lib/bb/parse/ast.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/bb/parse/ast.py b/lib/bb/parse/ast.py index 722d542ed..547ea679b 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} -- cgit 1.2.3-korg