File tree Expand file tree Collapse file tree 1 file changed +14
-8
lines changed
.ci/docker/manywheel/build_scripts Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -38,16 +38,22 @@ yum -y install bzip2 make git patch unzip bison yasm diffutils \
3838 automake which file \
3939 ${PYTHON_COMPILE_DEPS}
4040
41- # Install newest autoconf
42- if [ ! -d " build-aux" ]; then
43- mkdir -p build-aux
44- fi
45- cd build-aux || exit 1
46- curl -o config.guess -sL http://git.savannah.gnu.org/gitweb/? p=config.git; a=blob_plain; f=config.guess; hb=HEAD
47- curl -o config.sub -sL http://git.savannah.gnu.org/gitweb/? p=config.git; a=blob_plain; f=config.sub; hb=HEAD
48- chmod +x config.guess config.sub
41+ # Install newest autoconf manually
42+ wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz
43+ tar -xzf autoconf-2.71.tar.gz
44+ cd autoconf-2.71
45+ ./configure
46+ make -j$( nproc)
47+ make install
4948cd ..
5049
50+ # Verify installation
51+ autoconf --version
52+
53+ # Install newest autoconf (previous method)
54+ # build_autoconf $AUTOCONF_ROOT $AUTOCONF_HASH
55+
56+
5157
5258# Install newest autoconf
5359build_autoconf $AUTOCONF_ROOT $AUTOCONF_HASH
You can’t perform that action at this time.
0 commit comments