Skip to content

Commit a88926a

Browse files
authored
Do not use ftp (#1369)
* Do not use ftp `s#ftp://#https://#` * Remove no-longer relevant comment
1 parent 8d8dbb5 commit a88926a

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

ffmpeg/win/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN yum install -y \
3535
nano
3636

3737
# Update automake to 1.15
38-
RUN wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
38+
RUN wget https://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
3939
RUN tar -xzvf automake-1.15.tar.gz
4040
RUN cd automake-1.15.tar.gz && ./configure && make && make install
4141

manywheel/build_scripts/build_utils.sh

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
#!/bin/bash
22
# Helper utilities for build
33

4-
# XXX: the official https server at www.openssl.org cannot be reached
5-
# with the old versions of openssl and curl in Centos 5.11 hence the fallback
6-
# to the ftp mirror:
7-
OPENSSL_DOWNLOAD_URL=ftp://ftp.openssl.org/source/old/1.1.1/
8-
# Ditto the curl sources
9-
CURL_DOWNLOAD_URL=http://curl.askapache.com/download
10-
11-
AUTOCONF_DOWNLOAD_URL=http://ftp.gnu.org/gnu/autoconf
4+
OPENSSL_DOWNLOAD_URL=https://ftp.openssl.org/source/old/1.1.1/
5+
CURL_DOWNLOAD_URL=https://curl.askapache.com/download
6+
7+
AUTOCONF_DOWNLOAD_URL=https://ftp.gnu.org/gnu/autoconf
128

139

1410
function check_var {

0 commit comments

Comments
 (0)