summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-01-18 18:01:17 -0800
committerZac Medico <zmedico@gentoo.org>2011-01-18 18:03:48 -0800
commit0fa89c1e0d11d1592861acb4a44385c3d23f25a2 (patch)
tree421ff9a9e3ad9d51e27d2457f86b316920ec767e
parentdepgraph: avoid updates more (diff)
downloadportage-0fa89c1e0d11d1592861acb4a44385c3d23f25a2.tar.gz
portage-0fa89c1e0d11d1592861acb4a44385c3d23f25a2.tar.bz2
portage-0fa89c1e0d11d1592861acb4a44385c3d23f25a2.zip
depgraph: avoid duplicate ebuild visibility check
-rw-r--r--pym/_emerge/depgraph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index 4ccea99a8..6891b939a 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -2937,7 +2937,7 @@ class depgraph(object):
# reinstall the same exact version only due
# to a KEYWORDS mask. See bug #252167.
- if matched_packages:
+ if pkg.type_name != "ebuild" and matched_packages:
# If the ebuild no longer exists or it's
# keywords have been dropped, reject built
# instances (installed or binary).