public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] portage r15808 - main/branches/2.1.7/pym/_emerge
@ 2010-03-09 20:21 Zac Medico (zmedico)
  0 siblings, 0 replies; only message in thread
From: Zac Medico (zmedico) @ 2010-03-09 20:21 UTC (permalink / raw
  To: gentoo-commits

Author: zmedico
Date: 2010-03-09 20:21:28 +0000 (Tue, 09 Mar 2010)
New Revision: 15808

Modified:
   main/branches/2.1.7/pym/_emerge/depgraph.py
Log:
Merge libc asap for all roots instead of just ROOT="/". (trunk r15804)

Modified: main/branches/2.1.7/pym/_emerge/depgraph.py
===================================================================
--- main/branches/2.1.7/pym/_emerge/depgraph.py	2010-03-09 20:21:05 UTC (rev 15807)
+++ main/branches/2.1.7/pym/_emerge/depgraph.py	2010-03-09 20:21:28 UTC (rev 15808)
@@ -3363,12 +3363,13 @@
 
 		# Merge libc asap, in order to account for implicit
 		# dependencies. See bug #303567.
-		libc_pkg = self._dynamic_config.mydbapi[running_root].match_pkgs(
-			portage.const.LIBC_PACKAGE_ATOM)
-		if libc_pkg:
-			libc_pkg = libc_pkg[0]
-			if libc_pkg.operation == 'merge':
-				asap_nodes.append(libc_pkg)
+		for root in self._dynamic_config.mydbapi:
+			libc_pkg = self._dynamic_config.mydbapi[root].match_pkgs(
+				portage.const.LIBC_PACKAGE_ATOM)
+			if libc_pkg:
+				libc_pkg = libc_pkg[0]
+				if libc_pkg.operation == 'merge':
+					asap_nodes.append(libc_pkg)
 
 		def gather_deps(ignore_priority, mergeable_nodes,
 			selected_nodes, node):




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-03-09 20:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-09 20:21 [gentoo-commits] portage r15808 - main/branches/2.1.7/pym/_emerge Zac Medico (zmedico)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox