When necessary, always print a list of missing atoms even if --verbose is not enabled...
authorZac Medico <zmedico@gentoo.org>
Tue, 25 Jul 2006 05:42:05 +0000 (05:42 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 25 Jul 2006 05:42:05 +0000 (05:42 -0000)
svn path=/main/trunk/; revision=4022

bin/emerge

index 299798e3b5c8f0e2d1b5c5e0db10d719f209f175..8cc859365b09707967e2394206b2d1b8963f89bf 100755 (executable)
@@ -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