summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/builder.py
diff options
context:
space:
mode:
authorAndrei Dinu <andrei.adrianx.dinu@intel.com>2012-10-12 17:51:30 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-24 21:13:07 +0100
commitb3374dbfd01ea5c962625781b6b9ce19829f3d5e (patch)
tree194704dbe73d9e22714b466aba5b4fe1525ab3ea /bitbake/lib/bb/ui/crumbs/builder.py
parent9cf610680f669c0b85036fdf2cb9c431eb040f6f (diff)
downloadpoky-b3374dbfd01ea5c962625781b6b9ce19829f3d5e.tar.gz
bitbake: hob: stop build without percentage shown
added a method in progressbar.py that doesn't update the percentage in the progress bar shown in hob. the call of the method is done in builder.py. (Bitbake rev: 7ab5775fceda1055b86bdc3313fc4bf928bf5155) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/builder.py')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
index d417e1b214..b1ddf12cb1 100755
--- a/bitbake/lib/bb/ui/crumbs/builder.py
+++ b/bitbake/lib/bb/ui/crumbs/builder.py
@@ -1492,7 +1492,7 @@ class Builder(gtk.Window):
1492 if response != gtk.RESPONSE_CANCEL: 1492 if response != gtk.RESPONSE_CANCEL:
1493 self.stopping = True 1493 self.stopping = True
1494 if response == gtk.RESPONSE_OK: 1494 if response == gtk.RESPONSE_OK:
1495 self.build_details_page.progress_bar.set_title("Stopping the build...") 1495 self.build_details_page.progress_bar.set_stop_title("Stopping the build....")
1496 self.build_details_page.progress_bar.set_rcstyle("stop") 1496 self.build_details_page.progress_bar.set_rcstyle("stop")
1497 self.cancel_build_sync() 1497 self.cancel_build_sync()
1498 elif response == gtk.RESPONSE_YES: 1498 elif response == gtk.RESPONSE_YES: