summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tinfoil.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-13 21:53:26 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-13 21:53:37 +0300
commit96b428908c3a56e90d35d6729693d716c9ebb976 (patch)
tree7495ae14316b6de33697c384decf64619817b543 /bitbake/lib/bb/tinfoil.py
parentf7afeeb75993b159bb8959e0309bc5eb3978a8fb (diff)
downloadpoky-96b428908c3a56e90d35d6729693d716c9ebb976.tar.gz
bitbake: cooker/bitbake-layers/tinfoil: Fix recipecache typo
(Bitbake rev: 0f5eee689992f84d263cb817dc2ce755a9a075f7) 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 3379853628..56ce54f6b9 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.recpiecache 74 self.cooker_data = self.cooker.recipecache
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.recpiecache 80 self.cooker_data = self.cooker.recipecache
81 else: 81 else:
82 self.parseRecipes() 82 self.parseRecipes()
83 83