From: Zac Medico Date: Wed, 11 Mar 2009 06:30:42 +0000 (-0000) Subject: Skip the code from bug #259954 when $ROOT != / since it shouldn't matter if X-Git-Tag: v2.1.6.8~94 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=2bb4426d9cb8e02c3d748fd2513149ab9117d461;p=portage.git Skip the code from bug #259954 when $ROOT != / since it shouldn't matter if there are unsatisfied system runtime deps in this case. (trunk r12734) svn path=/main/branches/2.1.6/; revision=12983 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 43ed4196d..9173d58bb 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -10769,6 +10769,12 @@ class Scheduler(PollScheduler): if graph is None: return pkg = merge.merge.pkg + + # Skip this if $ROOT != / since it shouldn't matter if there + # are unsatisfied system runtime deps in this case. + if pkg.root != '/': + return + completed_tasks = self._completed_tasks unsatisfied = self._unsatisfied_system_deps