aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge McCollister <george.mccollister@gmail.com>2016-06-16 15:22:03 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-16 22:42:46 +0100
commit29a34ae8f5306d2779bcc761c52f1f9d13a0c0c5 (patch)
treee0b623070df7d57d3dd3a3dc79b0cfb30ba3f2fb
parent6298696bb94a127cdec7964315f6891ba92cd026 (diff)
downloadbitbake-29a34ae8f5306d2779bcc761c52f1f9d13a0c0c5.tar.gz
runqueue: Use tid instead of taskid in find_chains()
In 2c88afb6 find_chains()'s taskid argument was renamed to tid but taskid is still used as key to explored_deps dictionary. Use tid instead of taskid. Signed-off-by: George McCollister <george.mccollister@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index b32e8e694..c9b6b847d 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -347,7 +347,7 @@ class RunQueueData:
if dep not in total_deps:
total_deps.append(dep)
- explored_deps[taskid] = total_deps
+ explored_deps[tid] = total_deps
for task in tasks:
find_chains(task, [])