diff options
-rw-r--r-- | pym/portage/__init__.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index a853e067f..53efef3e6 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -5384,10 +5384,7 @@ def dep_zapdeps(unreduced, reduced, myroot, use_binaries=0, trees=None): avail_slot = "%s:%s" % (dep_getkey(atom), mydbapi.aux_get(avail_pkg, ["SLOT"])[0]) elif not avail_pkg: - has_mask = False - if hasattr(mydbapi, "xmatch"): - has_mask = bool(mydbapi.xmatch("match-all", atom)) - if (selective or use_binaries or not has_mask): + if selective: avail_pkg = vardb.match(atom) if avail_pkg: avail_pkg = avail_pkg[-1] # highest (ascending order) |