summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-16 10:39:21 -0700
committerChris Larson <chris_larson@mentor.com>2010-12-16 10:39:27 -0700
commit144887553097a288a76b8de78f71548d5ef9a350 (patch)
tree0f53deaef1d4fae0d4c08fc978ccfc6e41bb1d36
parent0ea334430d492f82896c8b114dd3da214a37ae99 (diff)
downloadbitbake-144887553097a288a76b8de78f71548d5ef9a350.tar.gz
cooker: fix remnant rq/rqdata issue from poky sync
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r--lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index c098d9828..ead46d06f 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -271,7 +271,7 @@ class BBCooker:
depend_tree["rdepends-pkg"] = {}
depend_tree["rrecs-pkg"] = {}
- for task in xrange(len(rq.runq_fnid)):
+ for task in xrange(len(rq.rqdata.runq_fnid)):
taskname = rq.rqdata.runq_task[task]
fnid = rq.rqdata.runq_fnid[task]
fn = taskdata.fn_index[fnid]