[oe-commits] [bitbake] branch master updated: cooker: Fix incorrect dot file generation

git at git.openembedded.org git at git.openembedded.org
Wed Jul 20 15:46:46 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

The following commit(s) were added to refs/heads/master by this push:
       new  689730d   cooker: Fix incorrect dot file generation
689730d is described below

commit 689730dbb068c5ea3593e7b92fe5d5e5c0c3760a
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Jul 20 16:08:17 2016 +0100

    cooker: Fix incorrect dot file generation
    
    In the runqueue cleanup/conversion, "dep" was mistakenly used where "tid" should
    be leading to incorrect task-depends.dot files and causing general confusion.
    Fix this, its clearly incorrect looking at the code.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/cooker.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 9bd3460..a73a55d 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -744,7 +744,7 @@ class BBCooker:
             for dep in rq.rqdata.runtaskentries[tid].depends:
                 depfn = bb.runqueue.fn_from_tid(dep)
                 deppn = self.recipecache.pkg_fn[depfn]
-                dotname = "%s.%s" % (pn, bb.runqueue.taskname_from_tid(dep))
+                dotname = "%s.%s" % (pn, bb.runqueue.taskname_from_tid(tid))
                 if not dotname in depend_tree["tdepends"]:
                     depend_tree["tdepends"][dotname] = []
                 depend_tree["tdepends"][dotname].append("%s.%s" % (deppn, bb.runqueue.taskname_from_tid(dep)))

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


More information about the Openembedded-commits mailing list