We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38702e5 commit e0c5cc5Copy full SHA for e0c5cc5
.ci/docker/manywheel/build_scripts/build.sh
@@ -39,8 +39,10 @@ yum -y install bzip2 make git patch unzip bison yasm diffutils \
39
${PYTHON_COMPILE_DEPS}
40
41
# Install newest autoconf
42
-mkdir -p build-aux
43
-cd build-aux || mkdir -p build-aux && cd build-aux
+if [ ! -d "build-aux" ]; then
+ 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
0 commit comments