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/lib/bb/ui/hob.py | |
parent | f353148390e093719a9734e46629a6570ef92557 (diff) | |
download | ast2050-yocto-poky-d86fdf1307aa388a47289c84f462fba5c940a690.zip ast2050-yocto-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/lib/bb/ui/hob.py')
-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 14ea1f2..9debbca 100644 --- a/bitbake/lib/bb/ui/hob.py +++ b/bitbake/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) |