diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2023-07-12 16:15:57 +0200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-07-21 16:46:59 +1200 |
commit | bedec42b53b89377e2375786596608f75f4e48fe (patch) | |
tree | f2bcd31d4bba07cff00641968e0f0e2081f7adc5 /config | |
parent | dac4403390e5fb6afe4b4267506e4c68633fa620 (diff) | |
download | crosstool-ng-bedec42b53b89377e2375786596608f75f4e48fe.tar.gz crosstool-ng-bedec42b53b89377e2375786596608f75f4e48fe.tar.bz2 crosstool-ng-bedec42b53b89377e2375786596608f75f4e48fe.zip |
Revert "Update requirements: autoconf==2.71 and automake>=1.16"
This reverts commit 658f5e574f4025655da318fb0b688a394b6ff43f, which
was made without any justification, and prevents using crosstool-ng
even in decently recent distributions like Ubuntu 20.04 (which has
autoconf 2.69).
We have tested that ./bootstrap && ./configure --enable-local works
fine on Ubuntu 18.04, which uses autoconf 2.69 and automake 1.15, so
the existing requirements were enough.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/configure.in.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config/configure.in.in b/config/configure.in.in index 91093c2d..c67fd35f 100644 --- a/config/configure.in.in +++ b/config/configure.in.in @@ -36,14 +36,14 @@ config CONFIGURE_has_libtool_2_4_or_newer config CONFIGURE_has_libtoolize_2_4_or_newer @KCONFIG_libtoolize_2_4_or_newer@ -config CONFIGURE_has_autoconf_2_71_or_newer - @KCONFIG_autoconf_2_71_or_newer@ +config CONFIGURE_has_autoconf_2_65_or_newer + @KCONFIG_autoconf_2_65_or_newer@ -config CONFIGURE_has_autoreconf_2_71_or_newer - @KCONFIG_autoreconf_2_71_or_newer@ +config CONFIGURE_has_autoreconf_2_65_or_newer + @KCONFIG_autoreconf_2_65_or_newer@ -config CONFIGURE_has_automake_1_16_or_newer - @KCONFIG_automake_1_16_or_newer@ +config CONFIGURE_has_automake_1_15_or_newer + @KCONFIG_automake_1_15_or_newer@ config CONFIGURE_has_gnu_m4_1_4_12_or_newer @KCONFIG_gnu_m4_1_4_12_or_newer@ |