diff options
author | 2024-03-23 15:55:25 +0000 | |
---|---|---|
committer | 2024-03-23 15:56:56 +0000 | |
commit | 010b4be4c695d267514d7c8ea65590f22a4cf133 (patch) | |
tree | 392e3538a1ff70ea16f46577c04d1fe628190a40 /eclass | |
parent | dev-python/mypy: Stabilize 1.9.0 x86, #927604 (diff) | |
download | gentoo-010b4be4c695d267514d7c8ea65590f22a4cf133.tar.gz gentoo-010b4be4c695d267514d7c8ea65590f22a4cf133.tar.bz2 gentoo-010b4be4c695d267514d7c8ea65590f22a4cf133.zip |
toolchain.eclass: drop stale autoconf 2.13 handling
I knew I was meant to do something before pushing the tests branch.. (retry
with the extra error handling).
Fixes: f81ec884754b3f3d3720d40b212e12ef364821c5
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 5f350db0fe13..f01edde0287d 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -643,16 +643,6 @@ toolchain_src_prepare() { gnuconfig_update - # Update configure files - local f - einfo "Fixing misc issues in configure files" - for f in $(grep -l 'autoconf version 2.13' $(find "${S}" -name configure || die) || die) ; do - ebegin " Updating ${f/${S}\/} [LANG]" - patch "${f}" "${FILESDIR}"/gcc-configure-LANG.patch >& "${T}"/configure-patch.log \ - || eerror "Please file a bug about this" - eend $? - done - if ! use prefix-guest && [[ -n ${EPREFIX} ]] ; then einfo "Prefixifying dynamic linkers..." for f in gcc/config/*/*linux*.h ; do |