From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C313E138CBB for ; Tue, 3 Mar 2015 21:26:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57E32E0930; Tue, 3 Mar 2015 21:26:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06BD2E0930 for ; Tue, 3 Mar 2015 21:26:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0310E340A8F for ; Tue, 3 Mar 2015 21:26:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A14BD12F9A for ; Tue, 3 Mar 2015 21:26:35 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1425417942.20a48be6f4c6779e7d89aef2a64c008ec70dcc14.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/package/ebuild/config.py X-VCS-Directories: pym/portage/package/ebuild/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 20a48be6f4c6779e7d89aef2a64c008ec70dcc14 X-VCS-Branch: master Date: Tue, 3 Mar 2015 21:26:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e1da2cd7-30fc-40f3-bbac-47317d71cf04 X-Archives-Hash: 84a45dcad12635e260c4a8c6fcaa20b6 commit: 20a48be6f4c6779e7d89aef2a64c008ec70dcc14 Author: Zac Medico gentoo org> AuthorDate: Tue Mar 3 20:58:34 2015 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Mar 3 21:25:42 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=20a48be6 make.conf: expand PORTAGE_CONFIGROOT (bug 511806) This can be useful for making settings, such as PKGDIR, relative to PORTAGE_CONFIGROOT. X-Gentoo-Bug: 511806 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=511806 Acked-by: Brian Dolbec gentoo.org> pym/portage/package/ebuild/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py index 71fe4df..3c0018f 100644 --- a/pym/portage/package/ebuild/config.py +++ b/pym/portage/package/ebuild/config.py @@ -394,6 +394,7 @@ class config(object): # Allow make.globals to set default paths relative to ${EPREFIX}. expand_map["EPREFIX"] = eprefix + expand_map["PORTAGE_CONFIGROOT"] = config_root if portage._not_installed: make_globals_path = os.path.join(PORTAGE_BASE_PATH, "cnf", "make.globals")