@@ -625,8 +625,10 @@ jobs:
625
625
- dist : focal
626
626
env :
627
627
- MAKEFILE_TARGET=distcheck
628
+ - AUTOCONF_VER=2.71
628
629
- AUTOMAKE_VER=1.16.5
629
- - LIBTOOL_VER=2.4.6
630
+ - LIBTOOL_VER=2.4.7
631
+ - M4_VER=1.4.19
630
632
631
633
before_install :
632
634
- if [[ "$CROSS_GCC_VER" != "" ]]; then
@@ -640,21 +642,26 @@ before_install:
640
642
export C_INCLUDE_PATH=/usr/include;
641
643
MAKEFILE_TARGET=check-nolink;
642
644
fi
643
- - if [[ "$AUTOMAKE_VER" != "" || "$LIBTOOL_VER" != "" || "$M4_VER" != "" ]]; then
645
+ - if [[ "$AUTOCONF_VER" != "" || "$ AUTOMAKE_VER" != "" || "$LIBTOOL_VER" != "" || "$M4_VER" != "" ]]; then
644
646
GNUTOOLS_ROOT=`pwd`/../gnu-tools;
645
647
export PATH=$GNUTOOLS_ROOT/bin:$PATH;
646
648
GNU_DOWNLOAD_SITE=https://ftp.gnu.org/gnu;
647
649
fi
648
650
- if [[ "$M4_VER" != "" ]]; then
649
651
M4_XZ_URL=$GNU_DOWNLOAD_SITE/m4/m4-$M4_VER.tar.xz;
650
652
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);
652
654
fi
653
655
- if [[ "$LIBTOOL_VER" != "" ]]; then
654
656
LIBTOOL_XZ_URL=$GNU_DOWNLOAD_SITE/libtool/libtool-$LIBTOOL_VER.tar.xz;
655
657
wget -O - $LIBTOOL_XZ_URL | tar xf - --xz --directory ~;
656
658
(cd ~/libtool-$LIBTOOL_VER && ./configure --prefix=$GNUTOOLS_ROOT && make -j && make install);
657
659
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
658
665
- if [[ "$AUTOMAKE_VER" != "" ]]; then
659
666
AUTOMAKE_XZ_URL=$GNU_DOWNLOAD_SITE/automake/automake-$AUTOMAKE_VER.tar.xz;
660
667
wget -O - $AUTOMAKE_XZ_URL | tar xf - --xz --directory ~;
0 commit comments