From: Zac Medico Date: Wed, 20 Jun 2007 09:46:33 +0000 (-0000) Subject: Show a "world problems" warning for packages that aren't installed, even if they... X-Git-Tag: v2.2_pre1~1215 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=da13aa0be61038b36182ec85c0a59e9f27522147;p=portage.git Show a "world problems" warning for packages that aren't installed, even if they are available. svn path=/main/trunk/; revision=6887 --- diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index 5f0611c43..32b39d550 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -2219,6 +2219,7 @@ class depgraph(object): world_problems = True continue elif not vardb.match(x): + world_problems = True available = False if "--usepkgonly" not in self.myopts and \ portdb.match(x): @@ -2230,7 +2231,6 @@ class depgraph(object): if mymatches: available = True if not available: - world_problems = True continue mylist.append(x)