summaryrefslogtreecommitdiffstats
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)
downloadpoky-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:
71 self.logger.setLevel(logging.INFO) 71 self.logger.setLevel(logging.INFO)
72 sys.stderr.write("done.\n") 72 sys.stderr.write("done.\n")
73 73
74 self.cooker_data = self.cooker.status 74 self.cooker_data = self.cooker.recpiecache
75 75
76 def prepare(self, config_only = False): 76 def prepare(self, config_only = False):
77 if not self.cooker_data: 77 if not self.cooker_data:
78 if config_only: 78 if config_only:
79 self.cooker.parseConfiguration() 79 self.cooker.parseConfiguration()
80 self.cooker_data = self.cooker.status 80 self.cooker_data = self.cooker.recpiecache
81 else: 81 else:
82 self.parseRecipes() 82 self.parseRecipes()
83 83