diff options
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r-- | bitbake/lib/bb/cache.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index fd5fbb32fb..1c975b62e1 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -126,7 +126,6 @@ class CoreRecipeInfo(RecipeInfoCommon): | |||
126 | self.pv = self.getvar('PV', metadata) | 126 | self.pv = self.getvar('PV', metadata) |
127 | self.pr = self.getvar('PR', metadata) | 127 | self.pr = self.getvar('PR', metadata) |
128 | self.defaultpref = self.intvar('DEFAULT_PREFERENCE', metadata) | 128 | self.defaultpref = self.intvar('DEFAULT_PREFERENCE', metadata) |
129 | self.broken = self.getvar('BROKEN', metadata) | ||
130 | self.not_world = self.getvar('EXCLUDE_FROM_WORLD', metadata) | 129 | self.not_world = self.getvar('EXCLUDE_FROM_WORLD', metadata) |
131 | self.stamp = self.getvar('STAMP', metadata) | 130 | self.stamp = self.getvar('STAMP', metadata) |
132 | self.stampclean = self.getvar('STAMPCLEAN', metadata) | 131 | self.stampclean = self.getvar('STAMPCLEAN', metadata) |
@@ -233,7 +232,7 @@ class CoreRecipeInfo(RecipeInfoCommon): | |||
233 | 232 | ||
234 | # Collect files we may need for possible world-dep | 233 | # Collect files we may need for possible world-dep |
235 | # calculations | 234 | # calculations |
236 | if not self.broken and not self.not_world: | 235 | if not self.not_world: |
237 | cachedata.possible_world.append(fn) | 236 | cachedata.possible_world.append(fn) |
238 | 237 | ||
239 | # create a collection of all targets for sanity checking | 238 | # create a collection of all targets for sanity checking |