Skip to content

Commit cc8e83a

Browse files
committed
Travis CI: Update autotools for distcheck
New tools version to prepare the distributive tarball: - autoconf 2.71 (was 2.69) - automake 1.16.5 - m4 1.4.19 (was 1.4.18) - libtool 2.4.7 (was 2.4.6, needed to build automake)
1 parent c9b95b7 commit cc8e83a

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.travis.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -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

631633
before_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

Comments
 (0)