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 5893A15808B for ; Sun, 29 Sep 2024 21:05:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53565E2A55; Sun, 29 Sep 2024 21:05:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 398B3E2A55 for ; Sun, 29 Sep 2024 21:05:05 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72575343070 for ; Sun, 29 Sep 2024 21:05:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C954FC36 for ; Sun, 29 Sep 2024 21:05:02 +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: <1727643875.0c0900402038cccdb09e0c56244dd81d5b99ee14.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sed/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/sed/sed-4.9-r1.ebuild X-VCS-Directories: sys-apps/sed/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0c0900402038cccdb09e0c56244dd81d5b99ee14 X-VCS-Branch: master Date: Sun, 29 Sep 2024 21:05:02 +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: 9bae58c5-ff8b-4e56-81e3-cf8baa6804f9 X-Archives-Hash: 678bc3e1cf809e3207fb1dc89158b1c2 commit: 0c0900402038cccdb09e0c56244dd81d5b99ee14 Author: Sam James gentoo org> AuthorDate: Sun Sep 29 21:02:38 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 29 21:04:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c090040 sys-apps/sed: avoid eautoreconf for prefix For prefix, we might not have autotools when bootstrapping, so avoid eautoreconf there. We added it for some Modern C bits so it's not *critical* and can be avoided in that case. Closes: https://bugs.gentoo.org/934329 Signed-off-by: Sam James gentoo.org> sys-apps/sed/sed-4.9-r1.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-apps/sed/sed-4.9-r1.ebuild b/sys-apps/sed/sed-4.9-r1.ebuild index 564b3f9c3765..9129b5a48354 100644 --- a/sys-apps/sed/sed-4.9-r1.ebuild +++ b/sys-apps/sed/sed-4.9-r1.ebuild @@ -35,8 +35,12 @@ BDEPEND="nls? ( sys-devel/gettext ) src_prepare() { default - # Modern C fixes from latest autotools. bug #900382 - eautoreconf + + # Ignore prefix as a workaround for bug #934329 + if ! use prefix ; then + # Modern C fixes from latest autotools. bug #900382 + eautoreconf + fi } src_configure() {