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 1QHiKO-0003k0-S0 for garchives@archives.gentoo.org; Wed, 04 May 2011 20:05:45 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2F601C0B0; Wed, 4 May 2011 20:03:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id ADAD81C0AF for ; Wed, 4 May 2011 20:03:37 +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 6E8452AC03A for ; Wed, 4 May 2011 20:03:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id CB33B80509 for ; Wed, 4 May 2011 20:03:36 +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: <8d113a9300bbdf94157529036eafd2902c810e07.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:2.1.9 commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 8d113a9300bbdf94157529036eafd2902c810e07 Date: Wed, 4 May 2011 20:03:36 +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: e4e7964219df1b4c6d788496a9927245 commit: 8d113a9300bbdf94157529036eafd2902c810e07 Author: Arfrever Frehtes Taifersar Arahesis Gentoo Org> AuthorDate: Mon May 2 20:17:15 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed May 4 19:54:19 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D8d113a93 Avoid evaluation of values of variables in set_unless_changed(). --- bin/ebuild.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/ebuild.sh b/bin/ebuild.sh index b610342..f3349ae 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1654,7 +1654,7 @@ set_unless_changed() { variable=3D"${argument%%=3D*}" value=3D"${argument#*=3D}" if eval "[[ \${${variable}} =3D=3D \$(env -u ${variable} portageq envv= ar ${variable}) ]]"; then - eval "${variable}=3D\"${value}\"" + eval "${variable}=3D\"\${value}\"" fi done }