1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

bitbake: Add in code to support the BBCLASSEXTEND variable. Virtual native/sdk recipes then become possible

This commit is contained in:
Richard Purdie
2009-01-01 14:43:54 +00:00
parent 28fd9dadbd
commit ade351e2f4
6 changed files with 85 additions and 24 deletions
+2 -5
View File
@@ -628,13 +628,10 @@ class BBCooker:
fn = self.matchFile(buildfile)
self.buildSetVars()
# Load data into the cache for fn
# Load data into the cache for fn and parse the loaded cache data
self.bb_cache = bb.cache.init(self)
self.bb_cache.loadData(fn, self.configuration.data)
# Parse the loaded cache data
self.status = bb.cache.CacheData()
self.bb_cache.handle_data(fn, self.status)
self.bb_cache.loadData(fn, self.configuration.data, self.status)
# Tweak some variables
item = self.bb_cache.getVar('PN', fn, True)