aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/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:46 +0100
commitf7afeeb75993b159bb8959e0309bc5eb3978a8fb (patch)
tree065f289b2457262be6aff01b34d100dfaf71cdd3 /bitbake/lib/bb/tinfoil.py
parentfe17af27ae9fec87fff3940a077f7a635ae411b9 (diff)
downloadopenembedded-core-contrib-f7afeeb75993b159bb8959e0309bc5eb3978a8fb.tar.gz
bitbake: bitbake-layers/tinfoil: Catch up with status -> recpiecache rename
(Bitbake rev: 0a9cbe7a6a17c5df38cd442ee8650097d6bbf502) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/tinfoil.py')
-rw-r--r--bitbake/lib/bb/tinfoil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py
index cb53f3e54f..3379853628 100644
--- a/bitbake/lib/bb/tinfoil.py
+++ b/bitbake/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()