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:
Joshua Lock 2010-12-22 17:03:44 +00:00 committed by Richard Purdie
parent b1a2255b2d
commit ab83f5f266
1 changed files with 1 additions and 1 deletions

View File

@ -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()