[oe-commits] [bitbake] branch master-next updated: cooker: Ensure all tasks are shown in task dependency tree

git at git.openembedded.org git at git.openembedded.org
Tue Aug 1 10:36:51 UTC 2017


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 e2fbe72  cooker: Ensure all tasks are shown in task dependency tree
e2fbe72 is described below

commit e2fbe728769f09ef4178e2ef4d69a2f60ffe3ebb
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue Aug 1 09:37:37 2017 +0100

    cooker: Ensure all tasks are shown in task dependency tree
    
    "bitbake -g m4-native -c do_unpack" doesn't list any dependencies in
    task-depends.dot. This is because no header describing the task was
    added unless a task has dependencies. Tweak the code to fix this.
    
    [YOCTO #10893]
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/cooker.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 1a5e003..81027db 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -678,12 +678,12 @@ class BBCooker:
                     depend_tree["pn"][pn][ei] = vars(self.recipecaches[mc])[ei][taskfn]
 
 
+            dotname = "%s.%s" % (pn, bb.runqueue.taskname_from_tid(tid))
+            if not dotname in depend_tree["tdepends"]:
+                depend_tree["tdepends"][dotname] = []
             for dep in rq.rqdata.runtaskentries[tid].depends:
                 (depmc, depfn, deptaskname, deptaskfn) = bb.runqueue.split_tid_mcfn(dep)
                 deppn = self.recipecaches[mc].pkg_fn[deptaskfn]
-                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)))
             if taskfn not in seen_fns:
                 seen_fns.append(taskfn)

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


More information about the Openembedded-commits mailing list