public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Zac Medico (zmedico)" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] portage r15808 - main/branches/2.1.7/pym/_emerge
Date: Tue, 09 Mar 2010 20:21:28 +0000	[thread overview]
Message-ID: <E1Np5vk-0004lZ-PF@stork.gentoo.org> (raw)

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):




                 reply	other threads:[~2010-03-09 20:21 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1Np5vk-0004lZ-PF@stork.gentoo.org \
    --to=zmedico@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox