Fix the invalid dependency message so there's no confusion about which package has...
authorZac Medico <zmedico@gentoo.org>
Wed, 20 Dec 2006 04:09:31 +0000 (04:09 -0000)
committerZac Medico <zmedico@gentoo.org>
Wed, 20 Dec 2006 04:09:31 +0000 (04:09 -0000)
svn path=/main/trunk/; revision=5333

bin/emerge

index 9e4a1c542f4a9807bf24dcd9120514be843b8d9c..1cb50119f887767c740dc043ead3f2b9387dbb69 100755 (executable)
@@ -802,8 +802,9 @@ def show_invalid_depstring_notice(parent_node, depstring, error_msg):
        p_type, p_root, p_key, p_status = parent_node
        msg = []
        if p_status == "nomerge":
-               msg.append("Portage is unable to process the dependencies of this ")
-               msg.append("package.  In order to correct this problem, the package ")
+               msg.append("Portage is unable to process the dependencies of the ")
+               msg.append("'%s' package. " % p_key)
+               msg.append("In order to correct this problem, the package ")
                msg.append("should be uninstalled, reinstalled, or upgraded. ")
                msg.append("As a temporary workaround, the --nodeps option can ")
                msg.append("be used to ignore all dependencies.")