Skip to content

Commit 634f946

Browse files
nightly build changes except 313
1 parent e0c5cc5 commit 634f946

File tree

1 file changed

+14
-8
lines changed
  • .ci/docker/manywheel/build_scripts

1 file changed

+14
-8
lines changed

.ci/docker/manywheel/build_scripts/build.sh

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff 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
4948
cd ..
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
5359
build_autoconf $AUTOCONF_ROOT $AUTOCONF_HASH

0 commit comments

Comments
 (0)