From: Zac Medico Date: Wed, 20 Dec 2006 04:09:31 +0000 (-0000) Subject: Fix the invalid dependency message so there's no confusion about which package has... X-Git-Tag: v2.1.2~261 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=29b29204ec4f34aef1d215bb11c88afc62bb939b;p=portage.git Fix the invalid dependency message so there's no confusion about which package has the problem. svn path=/main/trunk/; revision=5333 --- diff --git a/bin/emerge b/bin/emerge index 9e4a1c542..1cb50119f 100755 --- a/bin/emerge +++ b/bin/emerge @@ -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.")