diff options
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index e1a15af260..6b3a0fcfb6 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1355,12 +1355,7 @@ class RunQueue: | |||
1355 | logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and all succeeded.", self.rqexe.stats.completed, self.rqexe.stats.skipped) | 1355 | logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and all succeeded.", self.rqexe.stats.completed, self.rqexe.stats.skipped) |
1356 | 1356 | ||
1357 | if self.state is runQueueFailed: | 1357 | if self.state is runQueueFailed: |
1358 | if not self.rqdata.taskData[''].tryaltconfigs: | 1358 | raise bb.runqueue.TaskFailure(self.rqexe.failed_tids) |
1359 | raise bb.runqueue.TaskFailure(self.rqexe.failed_tids) | ||
1360 | for tid in self.rqexe.failed_tids: | ||
1361 | (mc, fn, tn, _) = split_tid_mcfn(tid) | ||
1362 | self.rqdata.taskData[mc].fail_fn(fn) | ||
1363 | self.rqdata.reset() | ||
1364 | 1359 | ||
1365 | if self.state is runQueueComplete: | 1360 | if self.state is runQueueComplete: |
1366 | # All done | 1361 | # All done |