summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
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:05:35 +0000
commit8f4dcf794545273417d78ba18f51aa2b81606ae4 (patch)
tree8fc0079c677083316255ac77700c29187cf30b76 /lib/bb/cache.py
parent32aa49519e4f015e3c21466a7e5dc939f6369851 (diff)
downloadopenembedded-core-contrib-8f4dcf794545273417d78ba18f51aa2b81606ae4.tar.gz
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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index fd5fbb32fb..1c975b62e1 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -126,7 +126,6 @@ class CoreRecipeInfo(RecipeInfoCommon):
self.pv = self.getvar('PV', metadata)
self.pr = self.getvar('PR', metadata)
self.defaultpref = self.intvar('DEFAULT_PREFERENCE', metadata)
- self.broken = self.getvar('BROKEN', metadata)
self.not_world = self.getvar('EXCLUDE_FROM_WORLD', metadata)
self.stamp = self.getvar('STAMP', metadata)
self.stampclean = self.getvar('STAMPCLEAN', metadata)
@@ -233,7 +232,7 @@ class CoreRecipeInfo(RecipeInfoCommon):
# Collect files we may need for possible world-dep
# calculations
- if not self.broken and not self.not_world:
+ if not self.not_world:
cachedata.possible_world.append(fn)
# create a collection of all targets for sanity checking