[bitbake-devel] [PATCH 3/6] bb/ui/hob: show build messages are displayed in the order they're received

Joshua Lock josh at linux.intel.com
Wed Aug 3 01:17:36 UTC 2011


Use the new sequential option of RunningBuild to ensure this.

Fixes the first part of [YOCTO #1311]

Signed-off-by: Joshua Lock <josh at linux.intel.com>
---
 lib/bb/ui/hob.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/bb/ui/hob.py b/lib/bb/ui/hob.py
index 14ea1f2..9debbca 100644
--- a/lib/bb/ui/hob.py
+++ b/lib/bb/ui/hob.py
@@ -64,7 +64,7 @@ class MainWindow (gtk.Window):
         self.set_icon_name("applications-development")
         self.set_default_size(1000, 650)
 
-        self.build = RunningBuild()
+        self.build = RunningBuild(sequential=True)
         self.build.connect("build-failed", self.running_build_failed_cb)
         self.build.connect("build-succeeded", self.running_build_succeeded_cb)
         self.build.connect("build-started", self.build_started_cb)
-- 
1.7.6





More information about the bitbake-devel mailing list