diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2021-04-12 12:11:59 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2021-04-12 12:15:17 +0200 |
commit | f6c6734fca776ad54c4b254981a74a7b2f7978c5 (patch) | |
tree | 7a3dc8fffc20070bfce3454125160e01cf8c2b40 /eclass/autotools.eclass | |
parent | Revert "autotools.eclass: more case-style changes for consistency" (diff) | |
download | gentoo-f6c6734fca776ad54c4b254981a74a7b2f7978c5.tar.gz gentoo-f6c6734fca776ad54c4b254981a74a7b2f7978c5.tar.bz2 gentoo-f6c6734fca776ad54c4b254981a74a7b2f7978c5.zip |
Revert "autotools.eclass: rename configure.in to configure.ac on new EAPIs"
This reverts commit fe3f65790fabb6e98d0b851d3013714c7706eccc.
Change was done without maintainer consent
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index e01e72e69b6f..1a4bc954cbb2 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -376,19 +376,9 @@ eautoconf() { fi if [[ ${WANT_AUTOCONF} != "2.1" && -e configure.in ]] ; then - case ${EAPI} in - 5|6|7) - eqawarn "This package has a configure.in file which has long been deprecated. Please" - eqawarn "update it to use configure.ac instead as newer versions of autotools will die" - eqawarn "when it finds this file. See https://bugs.gentoo.org/426262 for details." - ;; - *) - # Move configure file to the new location only on newer EAPIs to ensure - # checks are done rather than retroactively breaking ebuilds. - einfo "Moving configure.in to configure.ac (bug #426262)" - mv configure.{in,ac} || die - ;; - esac + eqawarn "This package has a configure.in file which has long been deprecated. Please" + eqawarn "update it to use configure.ac instead as newer versions of autotools will die" + 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 |