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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CAE04158020 for ; Fri, 9 Dec 2022 16:51:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E889EE0886; Fri, 9 Dec 2022 16:51:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0245E0886 for ; Fri, 9 Dec 2022 16:51:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DEDBD340F84 for ; Fri, 9 Dec 2022 16:51:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5255675 for ; Fri, 9 Dec 2022 16:51:39 +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: <1670604687.0ce3882b9e54417f5ac0cf4f0d57d9367b4bc77c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ttcp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ttcp/ttcp-1.12-r3.ebuild X-VCS-Directories: net-analyzer/ttcp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0ce3882b9e54417f5ac0cf4f0d57d9367b4bc77c X-VCS-Branch: master Date: Fri, 9 Dec 2022 16:51:39 +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: b44d6992-d955-42b5-ac02-3bfbfb2e5eac X-Archives-Hash: 9d45db25c25094e882534f569b603b23 commit: 0ce3882b9e54417f5ac0cf4f0d57d9367b4bc77c Author: Sam James gentoo org> AuthorDate: Fri Dec 9 16:51:27 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 9 16:51:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ce3882b net-analyzer/ttcp: fix src_prepare Closes: https://bugs.gentoo.org/884635 Signed-off-by: Sam James gentoo.org> net-analyzer/ttcp/ttcp-1.12-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-analyzer/ttcp/ttcp-1.12-r3.ebuild b/net-analyzer/ttcp/ttcp-1.12-r3.ebuild index bd4b1e8b315a..1fae3ce9f5fa 100644 --- a/net-analyzer/ttcp/ttcp-1.12-r3.ebuild +++ b/net-analyzer/ttcp/ttcp-1.12-r3.ebuild @@ -18,7 +18,7 @@ SLOT="0" KEYWORDS="~amd64 ~hppa ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" src_prepare() { - mv "${DISTDIR}"/${P}.c ${PN}.c || die + cp "${DISTDIR}"/${P}.c ${PN}.c || die default }