summaryrefslogtreecommitdiff
path: root/bitbake-dev/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-01-03 16:33:11 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-01-03 16:33:11 +0000
commit772ec7db089f5fefd85e1e37695a22009e76d3bc (patch)
tree4f3f9066803f61b1f1898c1d39dff4f800239b40 /bitbake-dev/lib/bb/cooker.py
parentee0faf1346cabb0c90f43891ede3f88878f87b8b (diff)
downloadopenembedded-core-772ec7db089f5fefd85e1e37695a22009e76d3bc.tar.gz
openembedded-core-772ec7db089f5fefd85e1e37695a22009e76d3bc.tar.bz2
openembedded-core-772ec7db089f5fefd85e1e37695a22009e76d3bc.tar.xz
openembedded-core-772ec7db089f5fefd85e1e37695a22009e76d3bc.zip
bitbake-dev: Add BBCLASSEXTEND support
Diffstat (limited to 'bitbake-dev/lib/bb/cooker.py')
-rw-r--r--bitbake-dev/lib/bb/cooker.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/bitbake-dev/lib/bb/cooker.py b/bitbake-dev/lib/bb/cooker.py
index d19cef328..bbae4f03b 100644
--- a/bitbake-dev/lib/bb/cooker.py
+++ b/bitbake-dev/lib/bb/cooker.py
@@ -868,7 +868,7 @@ class BBCooker:
# read a file's metadata
try:
- fromCache, skip = self.bb_cache.loadData(f, self.configuration.data)
+ fromCache, skip = self.bb_cache.loadData(f, self.configuration.data, self.status)
if skip:
skipped += 1
bb.msg.debug(2, bb.msg.domain.Collection, "skipping %s" % f)
@@ -876,7 +876,6 @@ class BBCooker:
continue
elif fromCache: cached += 1
else: parsed += 1
- deps = None
# Disabled by RP as was no longer functional
# allow metadata files to add items to BBFILES
@@ -889,8 +888,6 @@ class BBCooker:
# aof = os.path.join(os.path.dirname(f),aof)
# files.append(aof)
- self.bb_cache.handle_data(f, self.status)
-
except IOError, e:
error += 1
self.bb_cache.remove(f)