summaryrefslogtreecommitdiffstats
path: root/lib/bb/cooker.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-02-13 11:41:31 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-22 20:24:34 +0000
commit293c796e8a3d1f74ca1e51017b6dede261612281 (patch)
treedeef9d9683a853b8319b90f9bf453e39a84be9a7 /lib/bb/cooker.py
parent8e0744d6d4ab306809618adf63463a04d6664e48 (diff)
downloadbitbake-293c796e8a3d1f74ca1e51017b6dede261612281.tar.gz
bitbake: show appropriate warnings for universe target
When building the universe target: * Show a warning about universe likely producing errors * Multiprovider errors are now shown as warnings Also remove an unused "error" variable in runqueue.py. Fixes [YOCTO #1936] Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cooker.py')
-rw-r--r--lib/bb/cooker.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 1a9cab7dc..f0778e5a4 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -1084,6 +1084,7 @@ class BBCooker:
if (task == None):
task = self.configuration.cmd
+ universe = ('universe' in targets)
targets = self.checkPackages(targets)
def buildTargetsIdle(server, rq, abort):
@@ -1127,6 +1128,8 @@ class BBCooker:
taskdata.add_unresolved(localdata, self.status)
rq = bb.runqueue.RunQueue(self, self.configuration.data, self.status, taskdata, runlist)
+ if universe:
+ rq.rqdata.warn_multi_bb = True
self.server_registration_cb(buildTargetsIdle, rq)
@@ -1180,6 +1183,7 @@ class BBCooker:
pkgs_to_build.append(t)
if 'universe' in pkgs_to_build:
+ parselog.warn("The \"universe\" target is only intended for testing and may produce errors.")
parselog.debug(1, "collating packages for \"universe\"")
pkgs_to_build.remove('universe')
for t in self.status.universe_target: