Add an 'EXCLUDE_FROM_WORLD' variable to oemake, which doesn't imply brokenness, to...
authorChris Larson <clarson@kergoth.com>
Wed, 1 Dec 2004 10:15:18 +0000 (10:15 +0000)
committerChris Larson <clarson@kergoth.com>
Wed, 1 Dec 2004 10:15:18 +0000 (10:15 +0000)
bin/oemake

index 46fa7da..fea006f 100644 (file)
@@ -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)