public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] portage r12540 - main/trunk/pym/_emerge
@ 2009-01-19  9:57 Zac Medico (zmedico)
  0 siblings, 0 replies; only message in thread
From: Zac Medico (zmedico) @ 2009-01-19  9:57 UTC (permalink / raw
  To: gentoo-commits

Author: zmedico
Date: 2009-01-19 09:57:35 +0000 (Mon, 19 Jan 2009)
New Revision: 12540

Modified:
   main/trunk/pym/_emerge/__init__.py
Log:
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.


Modified: main/trunk/pym/_emerge/__init__.py
===================================================================
--- main/trunk/pym/_emerge/__init__.py	2009-01-19 00:26:45 UTC (rev 12539)
+++ main/trunk/pym/_emerge/__init__.py	2009-01-19 09:57:35 UTC (rev 12540)
@@ -10357,7 +10357,8 @@
 			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(" * ")




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-01-19  9:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-19  9:57 [gentoo-commits] portage r12540 - main/trunk/pym/_emerge Zac Medico (zmedico)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox