File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ RUN yum install -y \
35
35
nano
36
36
37
37
# 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
39
39
RUN tar -xzvf automake-1.15.tar.gz
40
40
RUN cd automake-1.15.tar.gz && ./configure && make && make install
41
41
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# Helper utilities for build
3
3
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
12
8
13
9
14
10
function check_var {
You can’t perform that action at this time.
0 commit comments