summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/_emerge/__init__.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index ca4550afb..9d260ebd6 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -5424,11 +5424,10 @@ class depgraph(object):
for db, pkg_type, built, installed, db_keys in dbs:
if existing_node:
break
- if installed and not find_existing_node:
- want_reinstall = reinstall or empty or \
- (matched_packages and not selective)
- if want_reinstall and matched_packages:
- continue
+ if not find_existing_node and \
+ installed and matched_packages and \
+ (reinstall or empty or not selective):
+ continue
if hasattr(db, "xmatch"):
cpv_list = db.xmatch("match-all", atom)
else: