mirror of
https://git.yoctoproject.org/poky
synced 2026-04-22 15:32:14 +02:00
bitbake/depexp: fix early exit
Stupdi typo/thinko from me had depexp exiting once recipes had parsed as I'd used a return the while loop where I'd meant a continue... Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
b1a2255b2d
commit
ab83f5f266
@@ -225,7 +225,7 @@ def init(server, eventHandler):
|
||||
print(("\nParsing finished. %d cached, %d parsed, %d skipped, %d masked, %d errors."
|
||||
% ( event.cached, event.parsed, event.skipped, event.masked, event.errors)))
|
||||
pbar.hide()
|
||||
return
|
||||
continue
|
||||
gtk.gdk.threads_enter()
|
||||
pbar.update(x, y)
|
||||
gtk.gdk.threads_leave()
|
||||
|
||||
Reference in New Issue
Block a user