summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 8d65ba809a..a1620b0162 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -690,6 +690,8 @@ class BBCooker:
690 bb.event.fire(bb.event.BuildCompleted(buildname, item, failures), self.configuration.event_data) 690 bb.event.fire(bb.event.BuildCompleted(buildname, item, failures), self.configuration.event_data)
691 self.command.finishAsyncCommand() 691 self.command.finishAsyncCommand()
692 return False 692 return False
693 if retval is True:
694 return True
693 return 0.5 695 return 0.5
694 696
695 self.server.register_idle_function(buildFileIdle, rq) 697 self.server.register_idle_function(buildFileIdle, rq)
@@ -709,7 +711,6 @@ class BBCooker:
709 targets = self.checkPackages(targets) 711 targets = self.checkPackages(targets)
710 712
711 def buildTargetsIdle(server, rq, abort): 713 def buildTargetsIdle(server, rq, abort):
712
713 if abort or self.cookerAction == cookerStop: 714 if abort or self.cookerAction == cookerStop:
714 rq.finish_runqueue(True) 715 rq.finish_runqueue(True)
715 elif self.cookerAction == cookerShutdown: 716 elif self.cookerAction == cookerShutdown:
@@ -726,6 +727,8 @@ class BBCooker:
726 bb.event.fire(bb.event.BuildCompleted(buildname, targets, failures), self.configuration.event_data) 727 bb.event.fire(bb.event.BuildCompleted(buildname, targets, failures), self.configuration.event_data)
727 self.command.finishAsyncCommand() 728 self.command.finishAsyncCommand()
728 return None 729 return None
730 if retval is True:
731 return True
729 return 0.5 732 return 0.5
730 733
731 self.buildSetVars() 734 self.buildSetVars()