From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QMWJH-00068I-4s for garchives@archives.gentoo.org; Wed, 18 May 2011 02:16:27 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32C421C044; Wed, 18 May 2011 02:16:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F18AB1C044 for ; Wed, 18 May 2011 02:16:18 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 808BF1B4030 for ; Wed, 18 May 2011 02:16:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id F13B480504 for ; Wed, 18 May 2011 02:16:17 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <7d103598c0c7bec5451146d75f419b156e39de2f.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/depgraph.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 7d103598c0c7bec5451146d75f419b156e39de2f Date: Wed, 18 May 2011 02:16:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: f2153c55c9aca8f74393c8bf7d2a6fd4 commit: 7d103598c0c7bec5451146d75f419b156e39de2f Author: Zac Medico gentoo org> AuthorDate: Wed May 18 02:15:58 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed May 18 02:15:58 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D7d103598 --autounmask-write: use CONFIGROOT more --- pym/_emerge/depgraph.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 15a5df8..e1557a1 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -5818,7 +5818,9 @@ class depgraph(object): =20 if write_to_file: for root in roots: - abs_user_config =3D os.path.join(root, USER_CONFIG_PATH) + settings =3D self._frozen_config.roots[root].settings + abs_user_config =3D os.path.join( + settings["PORTAGE_CONFIGROOT"], USER_CONFIG_PATH) =20 if root in unstable_keyword_msg: write_changes(root, unstable_keyword_msg[root],