diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-07-20 22:39:50 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2018-07-21 00:14:49 +0300 |
commit | 6b9380efb04adfd321f7a0609bf940ab7b51bac4 (patch) | |
tree | fde3e8f5df243d641a8580f190c03180a5658602 /scripts | |
parent | 4bb56db35ed581e0d90c14f8e47b660181c84fe2 (diff) | |
download | subsurface-6b9380efb04adfd321f7a0609bf940ab7b51bac4.tar.gz |
Fetch sqlite from https:// site
The http:// version is down an makes Travis fail.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get-dep-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/get-dep-lib.sh b/scripts/get-dep-lib.sh index 81dcd1716..a0db86896 100755 --- a/scripts/get-dep-lib.sh +++ b/scripts/get-dep-lib.sh @@ -182,7 +182,7 @@ for package in "${PACKAGES[@]}" ; do curl_download_library libftdi1 https://www.intra2net.com/en/developer/libftdi/download/ libftdi1-${CURRENT_LIBFTDI}.tar.bz2 ;; sqlite) - curl_download_library sqlite http://www.sqlite.org/2017/ sqlite-autoconf-${CURRENT_SQLITE}.tar.gz + curl_download_library sqlite https://www.sqlite.org/2017/ sqlite-autoconf-${CURRENT_SQLITE}.tar.gz ;; *) echo "unknown package \"$package\"" |