diff options
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hobeventhandler.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/runningbuild.py | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py index 84f304352e..c474491d6a 100644 --- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py +++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py | |||
@@ -102,6 +102,8 @@ class HobHandler(gobject.GObject): | |||
102 | elif isinstance(event, bb.event.CacheLoadCompleted) and pbar: | 102 | elif isinstance(event, bb.event.CacheLoadCompleted) and pbar: |
103 | pbar.update(bb.ui.crumbs.hobeventhandler.progress_total, bb.ui.crumbs.hobeventhandler.progress_total) | 103 | pbar.update(bb.ui.crumbs.hobeventhandler.progress_total, bb.ui.crumbs.hobeventhandler.progress_total) |
104 | elif isinstance(event, bb.event.ParseStarted) and pbar: | 104 | elif isinstance(event, bb.event.ParseStarted) and pbar: |
105 | if event.total == 0: | ||
106 | return | ||
105 | pbar.set_title("Processing recipes") | 107 | pbar.set_title("Processing recipes") |
106 | bb.ui.crumbs.hobeventhandler.progress_total = event.total | 108 | bb.ui.crumbs.hobeventhandler.progress_total = event.total |
107 | pbar.update(0, bb.ui.crumbs.hobeventhandler.progress_total) | 109 | pbar.update(0, bb.ui.crumbs.hobeventhandler.progress_total) |
diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py index 4703e6d844..70fd57effc 100644 --- a/bitbake/lib/bb/ui/crumbs/runningbuild.py +++ b/bitbake/lib/bb/ui/crumbs/runningbuild.py | |||
@@ -234,6 +234,8 @@ class RunningBuild (gobject.GObject): | |||
234 | pbar.update(self.progress_total, self.progress_total) | 234 | pbar.update(self.progress_total, self.progress_total) |
235 | 235 | ||
236 | elif isinstance(event, bb.event.ParseStarted) and pbar: | 236 | elif isinstance(event, bb.event.ParseStarted) and pbar: |
237 | if event.total == 0: | ||
238 | return | ||
237 | pbar.set_title("Processing recipes") | 239 | pbar.set_title("Processing recipes") |
238 | self.progress_total = event.total | 240 | self.progress_total = event.total |
239 | pbar.update(0, self.progress_total) | 241 | pbar.update(0, self.progress_total) |
@@ -308,4 +310,4 @@ class RunningBuildTreeView (gtk.TreeView): | |||
308 | 310 | ||
309 | clipboard = gtk.clipboard_get() | 311 | clipboard = gtk.clipboard_get() |
310 | clipboard.set_text(paste_url) | 312 | clipboard.set_text(paste_url) |
311 | clipboard.store() \ No newline at end of file | 313 | clipboard.store() |