summaryrefslogtreecommitdiffstats
path: root/bitbake
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:53 +0100
commitf74ba25c0a00232a59e1deb286985ccb3c27517c (patch)
tree17adb81d3647d47053caf32d523ed870be01ab37 /bitbake
parent26447a0d0bf5ceaac382a78c1dbd00807dbab706 (diff)
downloadpoky-f74ba25c0a00232a59e1deb286985ccb3c27517c.tar.gz
bitbake: 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. (Bitbake rev: 29a34ae8f5306d2779bcc761c52f1f9d13a0c0c5) Signed-off-by: George McCollister <george.mccollister@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index b32e8e694d..c9b6b847db 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -347,7 +347,7 @@ class RunQueueData:
347 if dep not in total_deps: 347 if dep not in total_deps:
348 total_deps.append(dep) 348 total_deps.append(dep)
349 349
350 explored_deps[taskid] = total_deps 350 explored_deps[tid] = total_deps
351 351
352 for task in tasks: 352 for task in tasks:
353 find_chains(task, []) 353 find_chains(task, [])