summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-09-29 22:02:38 +0100
committerSam James <sam@gentoo.org>2024-09-29 22:04:35 +0100
commit0c0900402038cccdb09e0c56244dd81d5b99ee14 (patch)
treea44527cfeee6763ef9429166b7d8bd0dec1375f8 /sys-apps/sed
parentapp-text/multitail: Stabilize 7.1.2 ppc, #940496 (diff)
downloadgentoo-0c0900402038cccdb09e0c56244dd81d5b99ee14.tar.gz
gentoo-0c0900402038cccdb09e0c56244dd81d5b99ee14.tar.bz2
gentoo-0c0900402038cccdb09e0c56244dd81d5b99ee14.zip
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 <sam@gentoo.org>
Diffstat (limited to 'sys-apps/sed')
-rw-r--r--sys-apps/sed/sed-4.9-r1.ebuild8
1 files 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() {