diff options
author | Tiago Gomes <tiago.gomes@codethink.co.uk> | 2018-08-16 12:17:26 +0100 |
---|---|---|
committer | Tiago Gomes <tiago.avv@gmail.com> | 2018-08-16 12:33:01 +0000 |
commit | 0066d701186ef4ab6150b0a00c516cbeb0257805 (patch) | |
tree | 58717c9ee9d1b825ef9f733cdf8b42d82f148b58 | |
parent | 01c4ac57ceb2fc08e9d45acd65b3fe771b316269 (diff) | |
download | buildstream-0066d701186ef4ab6150b0a00c516cbeb0257805.tar.gz |
Use http instead of https for the gnu ftp mirrortiagogomes/disable-https-gnu-repo
https seems broken on the Debian image:
START autotools/hello/42930621-fetch.499.log
START Fetching https://ftpmirror.gnu.org/gnu/automake/automake-1.16.tar.gz
FAILURE Fetching https://ftpmirror.gnu.org/gnu/automake/automake-1.16.tar.gz
FAILURE tar source at hello.bst [line 16 column 2]: Error mirroring https://ftpmirror.gnu.org/gnu/automake/automake-1.16.tar.gz: <urlopen error [SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:720)>
-rw-r--r-- | doc/examples/autotools/project.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/autotools/project.conf b/doc/examples/autotools/project.conf index 4cfc0e692..726e7dd5a 100644 --- a/doc/examples/autotools/project.conf +++ b/doc/examples/autotools/project.conf @@ -10,4 +10,4 @@ element-path: elements # Define some aliases for the tarballs we download aliases: alpine: https://gnome7.codethink.co.uk/tarballs/ - gnu: https://ftpmirror.gnu.org/gnu/automake/ + gnu: http://ftpmirror.gnu.org/gnu/automake/ |