[oe-commits] [bitbake] 02/03: runqueue: Add missing setscene task corner case

git at git.openembedded.org git at git.openembedded.org
Wed Aug 14 16:36:29 UTC 2019


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

rpurdie pushed a commit to branch master
in repository bitbake.

commit 930efbc563443d82df8d692bb8ff172ca2bae192
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Aug 14 15:57:45 2019 +0100

    runqueue: Add missing setscene task corner case
    
    We weren't marking this special case of setscene task as buildable leading to
    runqueue task failures.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index ff19564..9f43376 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2294,6 +2294,8 @@ class RunQueueExecute:
             if self.sqdata.sq_revdeps[tid].issubset(self.scenequeue_covered | self.scenequeue_notcovered):
                 if tid not in self.sq_buildable:
                     self.sq_buildable.add(tid)
+            if len(self.sqdata.sq_revdeps[tid]) == 0:
+                self.sq_buildable.add(tid)
 
             if tid in self.sqdata.outrightfail:
                 self.sqdata.outrightfail.remove(tid)

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


More information about the Openembedded-commits mailing list