summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/dbapi/_expand_new_virt.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/dbapi/_expand_new_virt.py b/pym/portage/dbapi/_expand_new_virt.py
index 7a233f10b..6fccd164e 100644
--- a/pym/portage/dbapi/_expand_new_virt.py
+++ b/pym/portage/dbapi/_expand_new_virt.py
@@ -18,7 +18,8 @@ def expand_new_virt(vardb, atom):
while stack:
atom = stack.pop()
- if atom.blocker:
+ if atom.blocker or \
+ not atom.cp.startswith("virtual/"):
yield atom
continue