summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cooker.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index e2a5dc43a9..c946800a8c 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -815,7 +815,9 @@ class BBCooker:
815 for dep in rq.rqdata.runtaskentries[tid].depends: 815 for dep in rq.rqdata.runtaskentries[tid].depends:
816 (depmc, depfn, _, deptaskfn) = bb.runqueue.split_tid_mcfn(dep) 816 (depmc, depfn, _, deptaskfn) = bb.runqueue.split_tid_mcfn(dep)
817 deppn = self.recipecaches[depmc].pkg_fn[deptaskfn] 817 deppn = self.recipecaches[depmc].pkg_fn[deptaskfn]
818 depend_tree["tdepends"][dotname].append("%s.%s" % (deppn, bb.runqueue.taskname_from_tid(dep))) 818 if depmc:
819 depmc = "mc:" + depmc + ":"
820 depend_tree["tdepends"][dotname].append("%s%s.%s" % (depmc, deppn, bb.runqueue.taskname_from_tid(dep)))
819 if taskfn not in seen_fns: 821 if taskfn not in seen_fns:
820 seen_fns.append(taskfn) 822 seen_fns.append(taskfn)
821 packages = [] 823 packages = []