diff options
author | Andras Timar <andras.timar@collabora.com> | 2019-02-22 15:35:44 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2019-02-22 16:02:10 +0100 |
commit | ccb730201cebbfa4e81bdd7916437721e0d6bbc6 (patch) | |
tree | dd757c1d4885757eeffafdbce1ffdbd0f75855e1 | |
parent | 6481a57ca4b65f1c36fc5b38ee3731062699306f (diff) |
cURL: follow redirectscp-5.3-63
Change-Id: I58d25348f4b43145a19ca0edbc5cde2e9a57f468
Reviewed-on: https://gerrit.libreoffice.org/68212
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | Makefile.fetch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.fetch b/Makefile.fetch index 63622b12d9ff..ca4d911dbbc9 100644 --- a/Makefile.fetch +++ b/Makefile.fetch @@ -16,7 +16,7 @@ endef else define fetch_Download__wget_command -&& echo fetching $2 && bash -c '$(CURL) -O $1/$2 2>&1 | tee -a $(fetch_LOGFILE) && [ $$PIPESTATUS -eq 0 ]' +&& echo fetching $2 && bash -c '$(CURL) -L -O $1/$2 2>&1 | tee -a $(fetch_LOGFILE) && [ $$PIPESTATUS -eq 0 ]' endef endif |