When necessary, always print a list of missing atoms even if --verbose is not enabled...
authorZac Medico <zmedico@gentoo.org>
Mon, 31 Jul 2006 17:01:27 +0000 (17:01 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 31 Jul 2006 17:01:27 +0000 (17:01 -0000)
svn path=/main/branches/2.1/; revision=4065

bin/emerge

index d3faf66cd99b36e5db1182a821cdb184a63f5331..eafc07810fcd46609c05ea3eb66c00811f3be492 100755 (executable)
@@ -1427,9 +1427,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 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