aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/tinfoil.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-12 18:00:39 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-12 18:00:39 +0100
commit0a9cbe7a6a17c5df38cd442ee8650097d6bbf502 (patch)
treec9aade604318b5e87affd6bd71f08118bd74bfc2 /lib/bb/tinfoil.py
parentdb307fc68773868de2db614a061f51c5c6a90468 (diff)
downloadbitbake-0a9cbe7a6a17c5df38cd442ee8650097d6bbf502.tar.gz
bitbake-layers/tinfoil: Catch up with status -> recpiecache rename
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/tinfoil.py')
-rw-r--r--lib/bb/tinfoil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/tinfoil.py b/lib/bb/tinfoil.py
index cb53f3e54..337985362 100644
--- a/lib/bb/tinfoil.py
+++ b/lib/bb/tinfoil.py
@@ -71,13 +71,13 @@ class Tinfoil:
self.logger.setLevel(logging.INFO)
sys.stderr.write("done.\n")
- self.cooker_data = self.cooker.status
+ self.cooker_data = self.cooker.recpiecache
def prepare(self, config_only = False):
if not self.cooker_data:
if config_only:
self.cooker.parseConfiguration()
- self.cooker_data = self.cooker.status
+ self.cooker_data = self.cooker.recpiecache
else:
self.parseRecipes()