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 18933138335 for ; Sun, 11 Aug 2019 11:20:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 076C0E0864; Sun, 11 Aug 2019 11:20:45 +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 E2085E0864 for ; Sun, 11 Aug 2019 11:20:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 ADF5F3498DD for ; Sun, 11 Aug 2019 11:20:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A425B75F for ; Sun, 11 Aug 2019 11:20:41 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1565522361.0d7d78921ed706f20e0a14dd4ca7afb13d2e5efd.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/aunit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/aunit/aunit-2019.ebuild X-VCS-Directories: dev-ada/aunit/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0d7d78921ed706f20e0a14dd4ca7afb13d2e5efd X-VCS-Branch: master Date: Sun, 11 Aug 2019 11:20:41 +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: faced99f-76e3-4e97-8724-e1cfe444b987 X-Archives-Hash: c3d54592014842a56b79fecb219fbeef commit: 0d7d78921ed706f20e0a14dd4ca7afb13d2e5efd Author: David Seifert gentoo org> AuthorDate: Sun Aug 11 11:19:21 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 11 11:19:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7d7892 dev-ada/aunit: [QA] Fix missing trailing slash Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: David Seifert gentoo.org> dev-ada/aunit/aunit-2019.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-ada/aunit/aunit-2019.ebuild b/dev-ada/aunit/aunit-2019.ebuild index 8f4d3ecf8be..069e8fc9032 100644 --- a/dev-ada/aunit/aunit-2019.ebuild +++ b/dev-ada/aunit/aunit-2019.ebuild @@ -35,12 +35,12 @@ src_compile() { } src_install() { - emake INSTALL="${D}"usr install + emake INSTALL="${D}"/usr install einstalldocs - mv "${D}"usr/share/doc/${PN}/* "${D}"usr/share/doc/${PF}/ || die - rmdir "${D}"usr/share/doc/${PN} || die - mv "${D}"usr/share/examples/${PN} "${D}"usr/share/doc/${PF}/examples || die - rmdir "${D}"usr/share/examples || die + mv "${D}"/usr/share/doc/${PN}/* "${D}"/usr/share/doc/${PF}/ || die + rmdir "${D}"/usr/share/doc/${PN} || die + mv "${D}"/usr/share/examples/${PN} "${D}"/usr/share/doc/${PF}/examples || die + rmdir "${D}"/usr/share/examples || die rm -r "${D}"/usr/share/gpr/manifests || die }