From: Zac Medico Date: Sun, 1 Mar 2009 00:05:41 +0000 (-0000) Subject: Skip the code from bug #259954 when $ROOT != / since it shouldn't matter if X-Git-Tag: v2.2_rc24~81 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e45e8cd48d195269883b90a30c2fd1724b7fddf0;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. svn path=/main/trunk/; revision=12734 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 83186a91e..eb6ea9a35 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -10785,6 +10785,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