diff options
Diffstat (limited to 'bitbake/lib/bb/tinfoil.py')
-rw-r--r-- | bitbake/lib/bb/tinfoil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py index 7aa653f1aa..95608ae3bd 100644 --- a/bitbake/lib/bb/tinfoil.py +++ b/bitbake/lib/bb/tinfoil.py | |||
@@ -74,13 +74,13 @@ class Tinfoil: | |||
74 | self.logger.setLevel(logging.INFO) | 74 | self.logger.setLevel(logging.INFO) |
75 | sys.stderr.write("done.\n") | 75 | sys.stderr.write("done.\n") |
76 | 76 | ||
77 | self.cooker_data = self.cooker.recipecache | 77 | self.cooker_data = self.cooker.recipecaches[''] |
78 | 78 | ||
79 | def prepare(self, config_only = False): | 79 | def prepare(self, config_only = False): |
80 | if not self.cooker_data: | 80 | if not self.cooker_data: |
81 | if config_only: | 81 | if config_only: |
82 | self.cooker.parseConfiguration() | 82 | self.cooker.parseConfiguration() |
83 | self.cooker_data = self.cooker.recipecache | 83 | self.cooker_data = self.cooker.recipecaches[''] |
84 | else: | 84 | else: |
85 | self.parseRecipes() | 85 | self.parseRecipes() |
86 | 86 | ||