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 1QGzYy-0006Yw-J8 for garchives@archives.gentoo.org; Mon, 02 May 2011 20:17:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D21621C098; Mon, 2 May 2011 20:17:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9B3901C099 for ; Mon, 2 May 2011 20:17:41 +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 18D311B4022 for ; Mon, 2 May 2011 20:17:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 7590B80505 for ; Mon, 2 May 2011 20:17:40 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild.sh X-VCS-Directories: bin/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: d724545334185679e9c7d13c8b3feaa735e1fd48 Date: Mon, 2 May 2011 20:17:40 +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: 705e83e26dfa51068de156175e1946b5 commit: d724545334185679e9c7d13c8b3feaa735e1fd48 Author: Arfrever Frehtes Taifersar Arahesis Gentoo Org> AuthorDate: Mon May 2 20:17:15 2011 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gentoo org> CommitDate: Mon May 2 20:17:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dd7245453 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 }