From: George McCollister Date: Thu, 16 Jun 2016 20:22:03 +0000 (-0500) Subject: runqueue: Use tid instead of taskid in find_chains() X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=29a34ae8f5306d2779bcc761c52f1f9d13a0c0c5;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py index b32e8e694d4..c9b6b847db1 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, [])