From: Zac Medico Date: Mon, 19 Jan 2009 09:57:35 +0000 (-0000) Subject: When in --keep-going mode, don't suppress the list of failed packages display X-Git-Tag: v2.2_rc24~257 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=7d4ef7bd6309a79c60c44d73398d90fe23196687;p=portage.git When in --keep-going mode, don't suppress the list of failed packages display at the end when there is only one failure, since the failure may have occurred much earlier and the related output may not be visible any longer. svn path=/main/trunk/; revision=12540 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 814ce7052..478faf235 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -10357,7 +10357,8 @@ class Scheduler(PollScheduler): for msg in self._post_mod_echo_msgs: msg() - if len(self._failed_pkgs_all) > 1: + if len(self._failed_pkgs_all) > 1 or \ + (self._failed_pkgs_all and "--keep-going" in self.myopts): msg = "The following packages have " + \ "failed to build or install:" prefix = bad(" * ")