]> Git Repo - VerusCoin.git/commitdiff
depends: Use curl for fetching on Linux
authorLuke Dashjr <[email protected]>
Tue, 9 Feb 2016 03:29:23 +0000 (03:29 +0000)
committerJack Grigg <[email protected]>
Wed, 29 Nov 2017 17:24:59 +0000 (17:24 +0000)
Currently Travis's wget fails fetching qrencode:

Fetching qrencode...
ERROR: no certificate subject alternative name matches
requested host name `fukuchi.org'.
To connect to fukuchi.org insecurely, use `--no-check-certificate'.
OpenSSL: error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error
Unable to establish SSL connection.
make: *** [/home/travis/build/luke-jr/bitcoin/depends/sources/download-stamps/.stamp_fetched-qrencode-qrencode-3.4.4.tar.bz2.hash] Error 4

depends/builders/linux.mk

index 98d0e9de348fc860dbfb215c60f9d419d0f15005..75055e77e93c1ba471e88a586edbdd7744fd2556 100644 (file)
@@ -1,2 +1,2 @@
 build_linux_SHA256SUM = sha256sum
-build_linux_DOWNLOAD = wget --timeout=$(DOWNLOAD_CONNECT_TIMEOUT) --tries=$(DOWNLOAD_RETRIES) -nv -O
+build_linux_DOWNLOAD = curl --connect-timeout $(DOWNLOAD_CONNECT_TIMEOUT) --retry $(DOWNLOAD_RETRIES) -L -o
This page took 0.023191 seconds and 4 git commands to generate.