[oe-commits] [bitbake] branch master-next updated: runqueue: Ensure target_tids is filtered

git at git.openembedded.org git at git.openembedded.org
Thu Aug 15 21:23:45 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 fad2594  runqueue: Ensure target_tids is filtered
fad2594 is described below

commit fad2594a85f9a5c35a207316f18364f35b8cf69b
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Aug 15 22:21:37 2019 +0100

    runqueue: Ensure target_tids is filtered
    
    bitbake <target> --runonly=fetch
    
    failed as the target_tids list included entries which were no longer targeted
    task ids. Fix this.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 4e64ddf..7fa074f 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1736,6 +1736,7 @@ class RunQueueExecute:
         # We can't skip specified target tasks which aren't setscene tasks
         self.cantskip = set(self.rqdata.target_tids)
         self.cantskip.difference_update(self.rqdata.runq_setscene_tids)
+        self.cantskip.intersection_update(self.rqdata.runtaskentries)
 
         schedulers = self.get_schedulers()
         for scheduler in schedulers:

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


More information about the Openembedded-commits mailing list