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 10AFB138334 for ; Thu, 27 Sep 2018 06:42:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12E61E0884; Thu, 27 Sep 2018 06:42:49 +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 DDB19E0884 for ; Thu, 27 Sep 2018 06:42:48 +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 34B16335C9F for ; Thu, 27 Sep 2018 06:42:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A3383DE for ; Thu, 27 Sep 2018 06:42:43 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1538030544.4f8eab39bc0f6077a7059d6f5030f327dc5c87ee.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-7.0.0.ebuild sys-devel/llvm/llvm-7.0.9999.ebuild sys-devel/llvm/llvm-9999.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4f8eab39bc0f6077a7059d6f5030f327dc5c87ee X-VCS-Branch: master Date: Thu, 27 Sep 2018 06:42:43 +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-Archives-Salt: 2e9e688c-cbb0-4fb4-991e-08d11e9023d4 X-Archives-Hash: e1daf4bdbe64cb309b20ec5ad8f89ce3 commit: 4f8eab39bc0f6077a7059d6f5030f327dc5c87ee Author: Michał Górny gentoo org> AuthorDate: Thu Sep 27 06:42:24 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Sep 27 06:42:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8eab39 sys-devel/llvm: Fix EROOT trailing slash, spotted by Hummer12007 Signed-off-by: Michał Górny gentoo.org> sys-devel/llvm/llvm-7.0.0.ebuild | 2 +- sys-devel/llvm/llvm-7.0.9999.ebuild | 2 +- sys-devel/llvm/llvm-9999.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-devel/llvm/llvm-7.0.0.ebuild b/sys-devel/llvm/llvm-7.0.0.ebuild index ef47128aa16..08b89718f24 100644 --- a/sys-devel/llvm/llvm-7.0.0.ebuild +++ b/sys-devel/llvm/llvm-7.0.0.ebuild @@ -252,7 +252,7 @@ multilib_src_install_all() { pkg_postinst() { elog "You can find additional opt-viewer utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${SLOT}/share/opt-viewer" + elog " ${EROOT%/}/usr/lib/llvm/${SLOT}/share/opt-viewer" elog "To use these scripts, you will need Python 2.7 along with the following" elog "packages:" elog " dev-python/pygments (for opt-viewer)" diff --git a/sys-devel/llvm/llvm-7.0.9999.ebuild b/sys-devel/llvm/llvm-7.0.9999.ebuild index b97e3a6b47b..b72dc4253f2 100644 --- a/sys-devel/llvm/llvm-7.0.9999.ebuild +++ b/sys-devel/llvm/llvm-7.0.9999.ebuild @@ -245,7 +245,7 @@ multilib_src_install_all() { pkg_postinst() { elog "You can find additional opt-viewer utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${SLOT}/share/opt-viewer" + elog " ${EROOT%/}/usr/lib/llvm/${SLOT}/share/opt-viewer" elog "To use these scripts, you will need Python 2.7 along with the following" elog "packages:" elog " dev-python/pygments (for opt-viewer)" diff --git a/sys-devel/llvm/llvm-9999.ebuild b/sys-devel/llvm/llvm-9999.ebuild index 014336a4f3e..eb43281d311 100644 --- a/sys-devel/llvm/llvm-9999.ebuild +++ b/sys-devel/llvm/llvm-9999.ebuild @@ -282,7 +282,7 @@ multilib_src_install_all() { pkg_postinst() { elog "You can find additional opt-viewer utility scripts in:" - elog " ${EROOT}/usr/lib/llvm/${SLOT}/share/opt-viewer" + elog " ${EROOT%/}/usr/lib/llvm/${SLOT}/share/opt-viewer" elog "To use these scripts, you will need Python 2.7 along with the following" elog "packages:" elog " dev-python/pygments (for opt-viewer)"