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 1SExbd-0003sG-I5 for garchives@archives.gentoo.org; Tue, 03 Apr 2012 06:52:41 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91743E0B57; Tue, 3 Apr 2012 06:52:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5A224E0B57 for ; Tue, 3 Apr 2012 06:52:26 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF8FA1B4016 for ; Tue, 3 Apr 2012 06:52:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7FE70E5403 for ; Tue, 3 Apr 2012 06:52:24 +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: <1333435929.ed8a457e265ea1c23b66aeb12d00f1abd3d79e60.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: ed8a457e265ea1c23b66aeb12d00f1abd3d79e60 X-VCS-Branch: master Date: Tue, 3 Apr 2012 06:52:24 +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: 6bfb2bd8-2fb1-47c6-8849-3e28fbaf06ee X-Archives-Hash: a54b94dec3a88ea312fcf989c431adc7 commit: ed8a457e265ea1c23b66aeb12d00f1abd3d79e60 Author: Zac Medico gentoo org> AuthorDate: Tue Apr 3 06:52:09 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Apr 3 06:52:09 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Ded8a457e Don't use varexpand for profile.env, bug #410625. --- pym/portage/package/ebuild/config.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/e= build/config.py index 4304e09..2cd21f3 100644 --- a/pym/portage/package/ebuild/config.py +++ b/pym/portage/package/ebuild/config.py @@ -320,7 +320,7 @@ class config(object): expand_map["EPREFIX"] =3D eprefix =20 env_d =3D getconfig(os.path.join(eroot, "etc", "profile.env"), - expand=3Dexpand_map) + expand=3DFalse) =20 make_globals =3D getconfig(os.path.join( self.global_config_path, 'make.globals'), expand=3Dexpand_map)