summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index ee06f0e71e..da7059b17f 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1077,9 +1077,12 @@ class RunQueue:
1077 retval = self.rqexe.execute() 1077 retval = self.rqexe.execute()
1078 1078
1079 if self.state is runQueueRunInit: 1079 if self.state is runQueueRunInit:
1080 logger.info("Executing RunQueue Tasks") 1080 if self.cooker.configuration.setsceneonly:
1081 self.rqexe = RunQueueExecuteTasks(self) 1081 self.state = runQueueComplete
1082 self.state = runQueueRunning 1082 else:
1083 logger.info("Executing RunQueue Tasks")
1084 self.rqexe = RunQueueExecuteTasks(self)
1085 self.state = runQueueRunning
1083 1086
1084 if self.state is runQueueRunning: 1087 if self.state is runQueueRunning:
1085 retval = self.rqexe.execute() 1088 retval = self.rqexe.execute()