diff options
Diffstat (limited to 'bitbake-dev/lib')
| -rw-r--r-- | bitbake-dev/lib/bb/runqueue.py | 2 | ||||
| -rw-r--r-- | bitbake-dev/lib/bb/taskdata.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bitbake-dev/lib/bb/runqueue.py b/bitbake-dev/lib/bb/runqueue.py index 1c911ef0c8..01452d2f33 100644 --- a/bitbake-dev/lib/bb/runqueue.py +++ b/bitbake-dev/lib/bb/runqueue.py | |||
| @@ -869,7 +869,7 @@ class RunQueue: | |||
| 869 | self.finish_runqueue() | 869 | self.finish_runqueue() |
| 870 | 870 | ||
| 871 | if self.state is runQueueFailed: | 871 | if self.state is runQueueFailed: |
| 872 | if self.taskData.abort: | 872 | if not self.taskData.tryaltconfigs: |
| 873 | raise bb.runqueue.TaskFailure(self.failed_fnids) | 873 | raise bb.runqueue.TaskFailure(self.failed_fnids) |
| 874 | for fnid in self.failed_fnids: | 874 | for fnid in self.failed_fnids: |
| 875 | self.taskData.fail_fnid(fnid) | 875 | self.taskData.fail_fnid(fnid) |
diff --git a/bitbake-dev/lib/bb/taskdata.py b/bitbake-dev/lib/bb/taskdata.py index 566614ee63..782dfb0b78 100644 --- a/bitbake-dev/lib/bb/taskdata.py +++ b/bitbake-dev/lib/bb/taskdata.py | |||
| @@ -30,7 +30,7 @@ class TaskData: | |||
| 30 | """ | 30 | """ |
| 31 | BitBake Task Data implementation | 31 | BitBake Task Data implementation |
| 32 | """ | 32 | """ |
| 33 | def __init__(self, abort = True): | 33 | def __init__(self, abort = True, tryaltconfigs = False): |
| 34 | self.build_names_index = [] | 34 | self.build_names_index = [] |
| 35 | self.run_names_index = [] | 35 | self.run_names_index = [] |
| 36 | self.fn_index = [] | 36 | self.fn_index = [] |
| @@ -57,6 +57,7 @@ class TaskData: | |||
| 57 | self.failed_fnids = [] | 57 | self.failed_fnids = [] |
| 58 | 58 | ||
| 59 | self.abort = abort | 59 | self.abort = abort |
| 60 | self.tryaltconfigs = tryaltconfigs | ||
| 60 | 61 | ||
| 61 | def getbuild_id(self, name): | 62 | def getbuild_id(self, name): |
| 62 | """ | 63 | """ |
