[oe-commits] [bitbake] branch master-next updated: fixes3

git at git.openembedded.org git at git.openembedded.org
Mon Jul 8 12:33:11 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

The following commit(s) were added to refs/heads/master-next by this push:
     new 824bc85  fixes3
824bc85 is described below

commit 824bc856ee046498190cf9b078a8adf04bdb5751
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Mon Jul 8 13:32:36 2019 +0100

    fixes3
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index d524e3c..3b81a0e 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1447,16 +1447,15 @@ class RunQueue:
             self.rqdata.init_progress_reporter.next_stage()
             self.start_worker()
             self.rqdata.init_progress_reporter.next_stage()
-            if not self.rqexe:
-                self.rqexe = RunQueueExecute(self)
+            self.rqexe = RunQueueExecute(self)
 
             # If we don't have any setscene functions, skip execution
             if len(self.rqdata.runq_setscene_tids) == 0:
-                self.rqdata.init_progress_reporter.finish()
                 for tid in self.rqdata.runtaskentries:
                     if len(self.rqdata.runtaskentries[tid].depends) == 0:
                         self.rqexe.setbuildable(tid)
                     self.rqexe.tasks_notcovered.add(tid)
+                self.rqexe.sqdone = True
             logger.info('Executing Tasks')
             self.state = runQueueRunning
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list