summaryrefslogtreecommitdiffstats
path: root/bin/emerge
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-07-25 05:42:05 +0000
committerZac Medico <zmedico@gentoo.org>2006-07-25 05:42:05 +0000
commit4ab7d27f7b50b6d9f67b72f927db542813cd15c3 (patch)
tree3a847f8451ee5398490e2aded565bf23242c138f /bin/emerge
parente6a9e130e4f75d86d23744b4e78c63e54c390d3c (diff)
downloadportage-4ab7d27f7b50b6d9f67b72f927db542813cd15c3.tar.gz
portage-4ab7d27f7b50b6d9f67b72f927db542813cd15c3.tar.bz2
portage-4ab7d27f7b50b6d9f67b72f927db542813cd15c3.zip
When necessary, always print a list of missing atoms even if --verbose is not enabled. Thanks to Caster <caster@matfyz.cz> for this patch from bug #141643.
svn path=/main/trunk/; revision=4022
Diffstat (limited to 'bin/emerge')
-rwxr-xr-xbin/emerge7
1 files changed, 4 insertions, 3 deletions
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