diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-08-02 17:00:19 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-03 17:51:56 +0100 |
commit | d86fdf1307aa388a47289c84f462fba5c940a690 (patch) | |
tree | 4d7c666ed1a4fe9371f01d3daa96fa597e558375 /bitbake | |
parent | f353148390e093719a9734e46629a6570ef92557 (diff) | |
download | poky-d86fdf1307aa388a47289c84f462fba5c940a690.tar.gz |
bb/ui/hob: show build messages are displayed in the order they're received
Use the new sequential option of RunningBuild to ensure this.
Fixes the first part of [YOCTO #1311]
(Bitbake rev: 972769e6362ea3cf35c8fb7cdfbb147758d0a2f2)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/hob.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py index 14ea1f29df..9debbca3d4 100644 --- a/bitbake/lib/bb/ui/hob.py +++ b/bitbake/lib/bb/ui/hob.py | |||
@@ -64,7 +64,7 @@ class MainWindow (gtk.Window): | |||
64 | self.set_icon_name("applications-development") | 64 | self.set_icon_name("applications-development") |
65 | self.set_default_size(1000, 650) | 65 | self.set_default_size(1000, 650) |
66 | 66 | ||
67 | self.build = RunningBuild() | 67 | self.build = RunningBuild(sequential=True) |
68 | self.build.connect("build-failed", self.running_build_failed_cb) | 68 | self.build.connect("build-failed", self.running_build_failed_cb) |
69 | self.build.connect("build-succeeded", self.running_build_succeeded_cb) | 69 | self.build.connect("build-succeeded", self.running_build_succeeded_cb) |
70 | self.build.connect("build-started", self.build_started_cb) | 70 | self.build.connect("build-started", self.build_started_cb) |