From: Zac Medico Date: Thu, 26 May 2011 21:37:04 +0000 (-0700) Subject: _add_pkg_dep_string: fix virt_dep satisfied check X-Git-Tag: v2.1.9.50~7 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f7594e756f54aa03d59e9be08ebc1c0b5c6d2c60;p=portage.git _add_pkg_dep_string: fix virt_dep satisfied check This is a mistake made when merging commit 6e6b9c5928e175af42615542866fc9b3aef694e6 to create commit 75b0a8aed8e56f02c0b455b4ee31fdc7e2b464cf. --- diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index dcebafe25..7affe3bf9 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -1341,7 +1341,7 @@ class depgraph(object): (virt_pkg.cpv, [str(x) for x in atoms]), noiselevel=-1, level=logging.DEBUG) - inst_pkgs = vardb.match_pkgs(atom) + inst_pkgs = vardb.match_pkgs(virt_dep.atom) if inst_pkgs: for inst_pkg in inst_pkgs: if self._pkg_visibility_check(inst_pkg):