summaryrefslogtreecommitdiffstats
path: root/bin/emerge
diff options
context:
space:
mode:
Diffstat (limited to 'bin/emerge')
-rwxr-xr-xbin/emerge5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/emerge b/bin/emerge
index 5cf60720b..9b90a55ee 100755
--- a/bin/emerge
+++ b/bin/emerge
@@ -1236,6 +1236,11 @@ class depgraph:
return 1
def validate_blockers(self):
+ """Remove any blockers from the digraph that do not match any of the
+ packages within the graph. Blockers are only matched against the
+ final state of the graph. Thus, it's possible that mutually blocking
+ packages will be installed simultaneously a some point(s) during the
+ transition from the initial to the final state."""
all_blockers = [node for node in self.digraph.all_nodes()
if node.split()[0] == "blocks"]
for blocker in all_blockers: