summaryrefslogtreecommitdiffstats
path: root/bitbake-dev/lib
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-01-01 14:43:54 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-01-03 16:25:20 +0000
commitade351e2f4c3693d4c2ecf3891899c2dcd082491 (patch)
tree5087685a70305a6d7792f2e622fca7654b6d0ced /bitbake-dev/lib
parent28fd9dadbdf842d5db32e893be85068f9b2b114a (diff)
downloadpoky-ade351e2f4c3693d4c2ecf3891899c2dcd082491.tar.gz
bitbake: Add in code to support the BBCLASSEXTEND variable. Virtual native/sdk recipes then become possible
Diffstat (limited to 'bitbake-dev/lib')
-rw-r--r--bitbake-dev/lib/bb/cooker.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/bitbake-dev/lib/bb/cooker.py b/bitbake-dev/lib/bb/cooker.py
index 06f3395d7a..d19cef328d 100644
--- a/bitbake-dev/lib/bb/cooker.py
+++ b/bitbake-dev/lib/bb/cooker.py
@@ -628,13 +628,10 @@ class BBCooker:
628 fn = self.matchFile(buildfile) 628 fn = self.matchFile(buildfile)
629 self.buildSetVars() 629 self.buildSetVars()
630 630
631 # Load data into the cache for fn 631 # Load data into the cache for fn and parse the loaded cache data
632 self.bb_cache = bb.cache.init(self) 632 self.bb_cache = bb.cache.init(self)
633 self.bb_cache.loadData(fn, self.configuration.data)
634
635 # Parse the loaded cache data
636 self.status = bb.cache.CacheData() 633 self.status = bb.cache.CacheData()
637 self.bb_cache.handle_data(fn, self.status) 634 self.bb_cache.loadData(fn, self.configuration.data, self.status)
638 635
639 # Tweak some variables 636 # Tweak some variables
640 item = self.bb_cache.getVar('PN', fn, True) 637 item = self.bb_cache.getVar('PN', fn, True)