From: Zac Medico Date: Fri, 14 Mar 2008 17:31:55 +0000 (-0000) Subject: When showing an unsatisfied dep, never include installed packages. (trunk r9360) X-Git-Tag: v2.1.5~365 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=18b168ec8a0fb81c4a631049bea041aa14c1dd77;p=portage.git When showing an unsatisfied dep, never include installed packages. (trunk r9360) svn path=/main/branches/2.1.2/; revision=9464 --- diff --git a/bin/emerge b/bin/emerge index bef6f4061..3623ea2ea 100755 --- a/bin/emerge +++ b/bin/emerge @@ -2145,6 +2145,8 @@ class depgraph: db_keys = self._mydbapi_keys dbs.append((vardb, "installed", True, True, db_keys)) for db, pkg_type, built, installed, db_keys in dbs: + if installed: + continue match = db.match if hasattr(db, "xmatch"): cpv_list = db.xmatch("match-all", atom)