Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12734 - main/trunk/pym/_emerge
Date: Sun, 01 Mar 2009 00:05:44
Message-Id: E1LdZBf-0000hh-5w@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-03-01 00:05:41 +0000 (Sun, 01 Mar 2009)
3 New Revision: 12734
4
5 Modified:
6 main/trunk/pym/_emerge/__init__.py
7 Log:
8 Skip the code from bug #259954 when $ROOT != / since it shouldn't matter if
9 there are unsatisfied system runtime deps in this case.
10
11
12 Modified: main/trunk/pym/_emerge/__init__.py
13 ===================================================================
14 --- main/trunk/pym/_emerge/__init__.py 2009-02-28 08:27:56 UTC (rev 12733)
15 +++ main/trunk/pym/_emerge/__init__.py 2009-03-01 00:05:41 UTC (rev 12734)
16 @@ -10785,6 +10785,12 @@
17 if graph is None:
18 return
19 pkg = merge.merge.pkg
20 +
21 + # Skip this if $ROOT != / since it shouldn't matter if there
22 + # are unsatisfied system runtime deps in this case.
23 + if pkg.root != '/':
24 + return
25 +
26 completed_tasks = self._completed_tasks
27 unsatisfied = self._unsatisfied_system_deps