From: Zac Medico Date: Tue, 25 Jul 2006 05:42:05 +0000 (-0000) Subject: When necessary, always print a list of missing atoms even if --verbose is not enabled... X-Git-Tag: v2.1.1~140 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4ab7d27f7b50b6d9f67b72f927db542813cd15c3;p=portage.git When necessary, always print a list of missing atoms even if --verbose is not enabled. Thanks to Caster for this patch from bug #141643. svn path=/main/trunk/; revision=4022 --- diff --git a/bin/emerge b/bin/emerge index 299798e3b..8cc859365 100755 --- a/bin/emerge +++ b/bin/emerge @@ -1233,9 +1233,10 @@ class depgraph: print "\n!!! Problems have been detected with your world file" print "!!! Please run "+green("emaint --check world")+"\n" - if missing_atoms and "--verbose" in self.myopts: - print "\n!!! Packages for the following atoms are either all" - print "!!! masked or don't exist:" + if missing_atoms: + print "\n" + colorize("BAD", "!!!") + \ + " Ebuilds for the following packages are either all" + print colorize("BAD", "!!!") + " masked or don't exist:" print " ".join(missing_atoms) + "\n" return 1