summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-20 09:46:33 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-20 09:46:33 +0000
commitda13aa0be61038b36182ec85c0a59e9f27522147 (patch)
tree8a560b80508497082ef0f6113ba0b1446f8daa14 /pym
parent872448034486064bf661f959e91aa86a4c17e764 (diff)
downloadportage-da13aa0be61038b36182ec85c0a59e9f27522147.tar.gz
portage-da13aa0be61038b36182ec85c0a59e9f27522147.tar.bz2
portage-da13aa0be61038b36182ec85c0a59e9f27522147.zip
Show a "world problems" warning for packages that aren't installed, even if they are available.
svn path=/main/trunk/; revision=6887
Diffstat (limited to 'pym')
-rw-r--r--pym/emerge/__init__.py2
1 files changed, 1 insertions, 1 deletions
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)