bitbake/parse/ast: We always need to finalize the default data since otherwise overrides to BBCLASSEXTEND may not be applied

(Bitbake rev: f22ac9149cc9ab96510bb377deb82cd9bceb95c1)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-06-01 12:22:17 +01:00
parent eda23733f0
commit af93b8937e

View File

@@ -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}