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

git at git.openembedded.org git at git.openembedded.org
Tue Aug 13 13:32:43 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 ee236c4  fix
ee236c4 is described below

commit ee236c4ede78884179fd4baf519f39531ee505e0
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue Aug 13 14:30:13 2019 +0100

    fix
    
    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 bda8a4b..b8bcf3a 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2310,11 +2310,10 @@ class RunQueueExecute:
         covered.difference_update(notcovered)
         covered.intersection_update(self.tasks_scenequeue_done)
 
-        for tid in notcovered:
+        for tid in notcovered | covered:
             if len(self.rqdata.runtaskentries[tid].depends) == 0:
                 self.setbuildable(tid)
-        for tid in covered:
-             if self.rqdata.runtaskentries[tid].depends.issubset(self.runq_complete):
+            elif self.rqdata.runtaskentries[tid].depends.issubset(self.runq_complete):
                  self.setbuildable(tid)
 
         self.tasks_covered = covered

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


More information about the Openembedded-commits mailing list