diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 86744fbaef..054d36cf16 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -968,7 +968,11 @@ class RunQueue: | |||
968 | 968 | ||
969 | if self.state is runQueueComplete: | 969 | if self.state is runQueueComplete: |
970 | # All done | 970 | # All done |
971 | logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and %d failed.", self.rqexe.stats.completed, self.rqexe.stats.skipped, self.rqexe.stats.failed) | 971 | if self.rqexe.stats.failed: |
972 | logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and %d failed.", self.rqexe.stats.completed, self.rqexe.stats.skipped, self.rqexe.stats.failed) | ||
973 | else: | ||
974 | # Let's avoid the word "failed" if nothing actually did | ||
975 | 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) | ||
972 | return False | 976 | return False |
973 | 977 | ||
974 | if self.state is runQueueChildProcess: | 978 | if self.state is runQueueChildProcess: |