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 1R7AcB-0004j0-1e for garchives@archives.gentoo.org; Fri, 23 Sep 2011 18:36:51 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2981421C107; Fri, 23 Sep 2011 18:36:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EE6A221C107 for ; Fri, 23 Sep 2011 18:36:38 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7CD971B4009 for ; Fri, 23 Sep 2011 18:36:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D54C680042 for ; Fri, 23 Sep 2011 18:36:37 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/misc-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: ed9982d781a81651db0480af128a6509eafe358a Date: Fri, 23 Sep 2011 18:36:37 +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: 95f1f79136266509030cbb6ff6e45c19 commit: ed9982d781a81651db0480af128a6509eafe358a Author: Fabian Groffen gentoo org> AuthorDate: Fri Sep 23 18:35:29 2011 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Sep 23 18:35:29 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Ded9982d7 install_hooks: fix variable name for PORTAGE_CONFIGROOT in addition, omit the leading slash, since PORTAGE_CONFIGROOT contains a trailing slash --- bin/misc-functions.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index a54ce2b..882d171 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -986,7 +986,7 @@ success_hooks() { } =20 install_hooks() { - local hooks_dir=3D"${PORTAGE_CONFIG_ROOT}/etc/portage/hooks/install" + local hooks_dir=3D"${PORTAGE_CONFIGROOT}etc/portage/hooks/install" local fp local ret=3D0 shopt -s nullglob