From: Zac Medico Date: Wed, 3 Dec 2008 20:46:05 +0000 (-0000) Subject: Break references between the depgraph and the dropped tasks inside X-Git-Tag: v2.2_rc17~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3bda3df0a824981ee2bb988337638730ecbbe64c;p=portage.git Break references between the depgraph and the dropped tasks inside Scheduler._calc_resume_list(), since the tasks are now saved for display at the end. svn path=/main/trunk/; revision=12146 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 1daa91d60..d138d440b 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -10446,6 +10446,7 @@ class Scheduler(PollScheduler): mylist = mydepgraph.altlist() mydepgraph.break_refs(mylist) + mydepgraph.break_refs(dropped_tasks) self._mergelist = mylist self._set_digraph(mydepgraph.schedulerGraph())