diff options
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index c8392346a8..95cab5132f 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -270,11 +270,11 @@ class RunQueueScheduler(object): | |||
270 | best = None | 270 | best = None |
271 | bestprio = None | 271 | bestprio = None |
272 | for tid in buildable: | 272 | for tid in buildable: |
273 | taskname = taskname_from_tid(tid) | ||
274 | if taskname in skip_buildable and skip_buildable[taskname] >= int(self.skip_maxthread[taskname]): | ||
275 | continue | ||
276 | prio = self.rev_prio_map[tid] | 273 | prio = self.rev_prio_map[tid] |
277 | if bestprio is None or bestprio > prio: | 274 | if bestprio is None or bestprio > prio: |
275 | taskname = taskname_from_tid(tid) | ||
276 | if taskname in skip_buildable and skip_buildable[taskname] >= int(self.skip_maxthread[taskname]): | ||
277 | continue | ||
278 | stamp = self.stamps[tid] | 278 | stamp = self.stamps[tid] |
279 | if stamp in self.rq.build_stamps.values(): | 279 | if stamp in self.rq.build_stamps.values(): |
280 | continue | 280 | continue |