summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-28 14:48:09 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-30 14:06:00 +0000
commit53dec01483c0eeb1428a3c459dcaa9b97992ba73 (patch)
tree379b967b86d9d3634f43b78bd5184e8f8f9aab97 /bitbake
parentb4f407c84ac5b2fde389dee97afa9ff75111e7d0 (diff)
downloadpoky-53dec01483c0eeb1428a3c459dcaa9b97992ba73.tar.gz
bitbake: cache.py: Drop support for BROKEN variable
All it now does is function in a similar way to EXCLUDE_FROM_WORLD and since we have a better named variable for this, lets just drop the usage of BROKEN at the bitbake level. (Bitbake rev: 8f4dcf794545273417d78ba18f51aa2b81606ae4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cache.py3
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