diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org> | 2020-12-03 00:00:00 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-12-09 15:17:56 +0100 |
commit | 509275acfc734c578754f3f57f0c710e9b98329c (patch) | |
tree | 7c9b587536e804748c06d308c1fa0334f0faf0f6 /eclass/autotools.eclass | |
parent | dev-php/pecl-redis: Add 8.0 target (diff) | |
download | gentoo-509275acfc734c578754f3f57f0c710e9b98329c.tar.gz gentoo-509275acfc734c578754f3f57f0c710e9b98329c.tar.bz2 gentoo-509275acfc734c578754f3f57f0c710e9b98329c.zip |
autotools.eclass: eautoconf(): Install config.guess and config.sub.
Bug: https://bugs.gentoo.org/757996
Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 625abd0e9d12..adeef7b17bea 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -357,6 +357,18 @@ eautoconf() { eqawarn "when it finds this file. See https://bugs.gentoo.org/426262 for details." fi + # Install config.guess and config.sub which are required by many macros in Autoconf >=2.70. + case ${EAPI:-0} in + 0|1|2|3|4|5|6) + cp "${EPREFIX}/usr/share/gnuconfig/config.guess" . || die + cp "${EPREFIX}/usr/share/gnuconfig/config.sub" . || die + ;; + *) + cp "${BROOT}/usr/share/gnuconfig/config.guess" . || die + cp "${BROOT}/usr/share/gnuconfig/config.sub" . || die + ;; + esac + autotools_run_tool --at-m4flags autoconf "$@" } |