aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-01 10:15:18 +0000
committerChris Larson <clarson@kergoth.com>2004-12-01 10:15:18 +0000
commitc56846698432184fd75441f032dd0c799be85495 (patch)
treed3884521f9e16a92368c164b6798aadd10c77333
parent4b31672dd72768e5011624cfec33c5ebad41c30c (diff)
downloadbitbake-c56846698432184fd75441f032dd0c799be85495.tar.gz
Add an 'EXCLUDE_FROM_WORLD' variable to oemake, which doesn't imply brokenness, to be used by images, native and cross oeclasses, etc.
-rw-r--r--bin/oemake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/oemake b/bin/oemake
index 46fa7da60..fea006f74 100644
--- a/bin/oemake
+++ b/bin/oemake
@@ -490,7 +490,7 @@ def build_depgraph():
oe.debug(1, "OEMAKE collating packages for \"world\"")
for f in make.pkgdata.keys():
d = make.pkgdata[f]
- if oe.data.getVar('BROKEN', d, 1):
+ if oe.data.getVar('BROKEN', d, 1) or oe.data.getVar('EXCLUDE_FROM_WORLD', d, 1):
continue
terminal = True
pn = oe.data.getVar('PN', d, 1)