summaryrefslogtreecommitdiffstats
path: root/lib/bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-10 17:25:04 +0100
committerChris Larson <chris_larson@mentor.com>2011-09-20 11:14:13 -0400
commit1624c97e34f92a56017d0b0fc9abb1d3099d7b71 (patch)
treed74d14614283f6b7afeab8ffb1a71eec26bf1f1c /lib/bb
parent2d723edf1e695c11f5e1be636450fb351e2ee30e (diff)
downloadbitbake-1624c97e34f92a56017d0b0fc9abb1d3099d7b71.tar.gz
bitbake/cooker: Fix -b option by ensuring the empty cache structure is present
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb')
-rw-r--r--lib/bb/cache.py1
-rw-r--r--lib/bb/cooker.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 21fa621c1..746236c89 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -569,7 +569,6 @@ class CacheData(object):
self.ignored_dependencies = []
self.world_target = set()
self.bbfile_priority = {}
- self.bbfile_config_priorities = []
def add_from_recipeinfo(self, fn, info):
self.task_deps[fn] = info.task_deps
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index bb2627293..c8d898ef2 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -547,6 +547,7 @@ class BBCooker:
def handleCollections( self, collections ):
"""Handle collections"""
+ self.status.bbfile_config_priorities = []
if collections:
collection_list = collections.split()
for c in collection_list:
@@ -617,6 +618,8 @@ class BBCooker:
# Parse the configuration here. We need to do it explicitly here since
# buildFile() doesn't use the cache
self.parseConfiguration()
+ self.status = bb.cache.CacheData()
+ self.handleCollections( bb.data.getVar("BBFILE_COLLECTIONS", self.configuration.data, 1) )
# If we are told to do the None task then query the default task
if (task == None):
@@ -628,7 +631,6 @@ class BBCooker:
self.buildSetVars()
- self.status = bb.cache.CacheData()
infos = bb.cache.Cache.parse(fn, self.get_file_appends(fn), \
self.configuration.data)
infos = dict(infos)