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 BC3CD1382C5 for ; Sun, 17 Jan 2021 06:57:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9373E0839; Sun, 17 Jan 2021 06:57:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 93DFBE0839 for ; Sun, 17 Jan 2021 06:57:01 +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 0B9FE33BE65 for ; Sun, 17 Jan 2021 06:57:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26F5B4B for ; Sun, 17 Jan 2021 06:56:58 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610866614.98d6d54b32ef00bcc61a561a4eafe988e4e89893.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/teckit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/teckit/teckit-2.5.10.ebuild X-VCS-Directories: app-text/teckit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 98d6d54b32ef00bcc61a561a4eafe988e4e89893 X-VCS-Branch: master Date: Sun, 17 Jan 2021 06:56:58 +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: cdbe992a-bec0-4ae2-b0a5-c1b8894f12ff X-Archives-Hash: 45eae7c1096d6fcefb43ebbe0776afba commit: 98d6d54b32ef00bcc61a561a4eafe988e4e89893 Author: Sam James gentoo org> AuthorDate: Sun Jan 17 06:56:46 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 17 06:56:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98d6d54b app-text/teckit: fix double prefix Closes: https://bugs.gentoo.org/765508 Package-Manager: Portage-3.0.12.0.2-prefix, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> app-text/teckit/teckit-2.5.10.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app-text/teckit/teckit-2.5.10.ebuild b/app-text/teckit/teckit-2.5.10.ebuild index 5a305123828..17421130f81 100644 --- a/app-text/teckit/teckit-2.5.10.ebuild +++ b/app-text/teckit/teckit-2.5.10.ebuild @@ -31,14 +31,14 @@ src_configure() { econf --disable-static } -src_install() { - emake DESTDIR="${ED}" install - dodoc AUTHORS README NEWS - find "${ED}" -name '*.la' -delete || die -} - src_test() { cd "${S}/test" || die chmod +x dotests.pl || die ./dotests.pl || die "tests failed" } + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS README NEWS + find "${ED}" -name '*.la' -delete || die +}