From: Zac Medico Date: Sat, 8 Sep 2007 08:13:34 +0000 (-0000) Subject: In depgraph.altlist(), try to merge asap_nodes sooner by giving them an exemption... X-Git-Tag: v2.1.3.9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4d626832602466516068d0e0ea867890816b074c;p=portage.git In depgraph.altlist(), try to merge asap_nodes sooner by giving them an exemption from the accept_root_node flag. svn path=/main/branches/2.1.2/; revision=7762 --- diff --git a/bin/emerge b/bin/emerge index 93f8f85fd..d7c884743 100755 --- a/bin/emerge +++ b/bin/emerge @@ -2382,7 +2382,8 @@ class depgraph: for ignore_priority in xrange(DepPriority.SOFT, DepPriority.MEDIUM_SOFT + 1): for node in nodes: - if not accept_root_node and \ + if nodes is not asap_nodes and \ + not accept_root_node and \ not mygraph.parent_nodes(node): continue selected_nodes = set()