summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tinfoil.py
diff options
context:
space:
mode:
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