diff options
| -rw-r--r-- | bitbake/lib/bb/runqueue.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 1959007bec..1c3187d462 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
| @@ -1060,6 +1060,13 @@ class RunQueueExecute: | |||
| 1060 | for pipe in self.build_pipes: | 1060 | for pipe in self.build_pipes: |
| 1061 | self.build_pipes[pipe].read() | 1061 | self.build_pipes[pipe].read() |
| 1062 | 1062 | ||
| 1063 | if len(self.failed_fnids) != 0: | ||
| 1064 | self.rq.state = runQueueFailed | ||
| 1065 | return | ||
| 1066 | |||
| 1067 | self.rq.state = runQueueComplete | ||
| 1068 | return | ||
| 1069 | |||
| 1063 | def finish(self): | 1070 | def finish(self): |
| 1064 | self.rq.state = runQueueCleanUp | 1071 | self.rq.state = runQueueCleanUp |
| 1065 | 1072 | ||
