From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1C31F1382C5 for ; Sun, 21 Jun 2020 08:47:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 455E4E086F; Sun, 21 Jun 2020 08:47:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D2F2E086F for ; Sun, 21 Jun 2020 08:47:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7630F34F9D8 for ; Sun, 21 Jun 2020 08:47:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70E7D253 for ; Sun, 21 Jun 2020 08:47:37 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1592729247.401e1697b162327cd5d62d42329b4116becbc06d.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/grc/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/grc/grc-1.11.3.ebuild X-VCS-Directories: app-misc/grc/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 401e1697b162327cd5d62d42329b4116becbc06d X-VCS-Branch: master Date: Sun, 21 Jun 2020 08:47: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 X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 23bdba70-b6fe-43b8-b2b8-427ac8dca869 X-Archives-Hash: 49627ad2b7781d9c1b19ba0a53695ac1 commit: 401e1697b162327cd5d62d42329b4116becbc06d Author: Patrice Clement gentoo org> AuthorDate: Sun Jun 21 08:29:48 2020 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Jun 21 08:47:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=401e1697 app-misc/grc: add trailing slash to ROOT. Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Patrice Clement gentoo.org> app-misc/grc/grc-1.11.3.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-misc/grc/grc-1.11.3.ebuild b/app-misc/grc/grc-1.11.3.ebuild index 3c1f47c2970..a3ff83965e4 100644 --- a/app-misc/grc/grc-1.11.3.ebuild +++ b/app-misc/grc/grc-1.11.3.ebuild @@ -50,13 +50,13 @@ src_install() { pkg_postinst() { elog - elog "Shell specific configurations can be found in ${ROOT}usr/share/grc" + elog "Shell specific configurations can be found in ${ROOT}/usr/share/grc" elog "Be sure to symlink one to use grc globally:" elog - elog " ln -s ${ROOT}usr/share/grc.SHELL ${ROOT}etc/profile.d/grc.sh" + elog " ln -s ${ROOT}/usr/share/grc.SHELL ${ROOT}/etc/profile.d/grc.sh" elog elog "Replace 'SHELL' in the above command with one of: bashrc, fish, zsh." - elog "Afterwards, use '. ${ROOT}etc/profile' to activate grc in existing" + elog "Afterwards, use '. ${ROOT}/etc/profile' to activate grc in existing" elog "shell sessions." elog }