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>
This commit is contained in:
George McCollister 2016-06-16 15:22:03 -05:00 committed by Richard Purdie
parent 26447a0d0b
commit f74ba25c0a
1 changed files with 1 additions and 1 deletions

View File

@ -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, [])