summaryrefslogtreecommitdiffstats
path: root/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/runqueue.py')
-rw-r--r--lib/bb/runqueue.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 274ccf267..6ca693d21 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -370,11 +370,11 @@ class RunQueueData:
for listid in xrange(numTasks):
task_done.append(False)
- weight.append(0)
+ weight.append(1)
deps_left.append(len(self.runq_revdeps[listid]))
for listid in endpoints:
- weight[listid] = 1
+ weight[listid] = 10
task_done[listid] = True
while True: