From c56846698432184fd75441f032dd0c799be85495 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 1 Dec 2004 10:15:18 +0000 Subject: Add an 'EXCLUDE_FROM_WORLD' variable to oemake, which doesn't imply brokenness, to be used by images, native and cross oeclasses, etc. --- bin/oemake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit 1.2.3-korg