summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-16 07:51:05 -0700
committerChris Larson <chris_larson@mentor.com>2010-12-16 07:51:05 -0700
commitef97bd82a3e18efde30c6a4973c957924ef353cb (patch)
treed1846c31f4cac92274c8a94a32a5dac27b8ceb57
parentd527ca441539618c990291fb8340f552ac760bce (diff)
downloadbitbake-ef97bd82a3e18efde30c6a4973c957924ef353cb.tar.gz
runqueue: fix remnant rq/rqdata reference from poky sync
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-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 7dbf7d18b..85e1760eb 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -83,7 +83,7 @@ class RunQueueScheduler(object):
"""
self.rq = runqueue
self.rqdata = rqdata
- numTasks = len(self.rq.runq_fnid)
+ numTasks = len(self.rqdata.runq_fnid)
self.prio_map = []
self.prio_map.extend(range(numTasks))