@@ -625,8 +625,10 @@ jobs:
625625 - dist : focal
626626 env :
627627 - MAKEFILE_TARGET=distcheck
628+ - AUTOCONF_VER=2.71
628629 - AUTOMAKE_VER=1.16.5
629- - LIBTOOL_VER=2.4.6
630+ - LIBTOOL_VER=2.4.7
631+ - M4_VER=1.4.19
630632
631633before_install :
632634- if [[ "$CROSS_GCC_VER" != "" ]]; then
@@ -640,21 +642,26 @@ before_install:
640642 export C_INCLUDE_PATH=/usr/include;
641643 MAKEFILE_TARGET=check-nolink;
642644 fi
643- - if [[ "$AUTOMAKE_VER" != "" || "$LIBTOOL_VER" != "" || "$M4_VER" != "" ]]; then
645+ - if [[ "$AUTOCONF_VER" != "" || "$ AUTOMAKE_VER" != "" || "$LIBTOOL_VER" != "" || "$M4_VER" != "" ]]; then
644646 GNUTOOLS_ROOT=`pwd`/../gnu-tools;
645647 export PATH=$GNUTOOLS_ROOT/bin:$PATH;
646648 GNU_DOWNLOAD_SITE=https://ftp.gnu.org/gnu;
647649 fi
648650- if [[ "$M4_VER" != "" ]]; then
649651 M4_XZ_URL=$GNU_DOWNLOAD_SITE/m4/m4-$M4_VER.tar.xz;
650652 wget -O - $M4_XZ_URL | tar xf - --xz --directory ~;
651- (cd ~/m4-$M4_VER && ./configure --prefix=$GNUTOOLS_ROOT && make -j check && make install);
653+ (cd ~/m4-$M4_VER && ./configure --prefix=$GNUTOOLS_ROOT && make -j && make install);
652654 fi
653655- if [[ "$LIBTOOL_VER" != "" ]]; then
654656 LIBTOOL_XZ_URL=$GNU_DOWNLOAD_SITE/libtool/libtool-$LIBTOOL_VER.tar.xz;
655657 wget -O - $LIBTOOL_XZ_URL | tar xf - --xz --directory ~;
656658 (cd ~/libtool-$LIBTOOL_VER && ./configure --prefix=$GNUTOOLS_ROOT && make -j && make install);
657659 fi
660+ - if [[ "$AUTOCONF_VER" != "" ]]; then
661+ AUTOCONF_XZ_URL=$GNU_DOWNLOAD_SITE/autoconf/autoconf-$AUTOCONF_VER.tar.xz;
662+ wget -O - $AUTOCONF_XZ_URL | tar xf - --xz --directory ~;
663+ (cd ~/autoconf-$AUTOCONF_VER && ./configure --prefix=$GNUTOOLS_ROOT && make -j && make install);
664+ fi
658665- if [[ "$AUTOMAKE_VER" != "" ]]; then
659666 AUTOMAKE_XZ_URL=$GNU_DOWNLOAD_SITE/automake/automake-$AUTOMAKE_VER.tar.xz;
660667 wget -O - $AUTOMAKE_XZ_URL | tar xf - --xz --directory ~;
0 commit comments