summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-04-28 11:41:44 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-02-20 21:47:14 +0100
commitb70b7a60f4b54e2f153a956026bf1ca361ed1fb9 (patch)
treeb7ceb5904753b4442dc3b247ebde5a55bd8f871e
parente8fd1f19bb2662b36e21ec5cb4d87550a255cedd (diff)
download via https rather than http
Change-Id: I2840d116d1a59e19f5869c0550c6ed3d1b911304 Reviewed-on: https://gerrit.libreoffice.org/37063 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit 2f3060d40a7c6972a2054514e59cea36e0437951)
-rw-r--r--Makefile.fetch6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.fetch b/Makefile.fetch
index 3e21be38685e..362c4e3bbc0f 100644
--- a/Makefile.fetch
+++ b/Makefile.fetch
@@ -212,15 +212,15 @@ $(WORKDIR)/download: $(BUILDDIR)/config_host.mk $(SRCDIR)/download.lst $(SRCDIR)
$(call fetch_Optional,XSLTML,XSLTML_TARBALL) \
$(call fetch_Optional,ZLIB,ZLIB_TARBALL) \
$(call fetch_Optional,ZMF,ZMF_TARBALL) \
- ,$(call fetch_Download_item,http://dev-www.libreoffice.org/src,$(item)))
+ ,$(call fetch_Download_item,https://dev-www.libreoffice.org/src,$(item)))
$(foreach item, \
$(call fetch_Optional,DBGHELP,DBGHELP_DLL) \
$(call fetch_Optional,ODK,UNOWINREG_DLL) \
$(call fetch_Optional,ODFVALIDATOR,ODFVALIDATOR_JAR) \
$(call fetch_Optional,OFFICEOTRON,OFFICEOTRON_JAR) \
- ,$(call fetch_Download_item,http://dev-www.libreoffice.org/extern,$(item)))
+ ,$(call fetch_Download_item,https://dev-www.libreoffice.org/extern,$(item)))
$(if $(call fetch_Optional,LIBGLTF,LIBGLTF_TARBALL) \
- , $(call fetch_Download_item,http://dev-www.libreoffice.org/src/libgltf,$(call fetch_Optional,LIBGLTF,LIBGLTF_TARBALL)))
+ , $(call fetch_Download_item,https://dev-www.libreoffice.org/src/libgltf,$(call fetch_Optional,LIBGLTF,LIBGLTF_TARBALL)))
@mkdir -p $(dir $@) && touch $@
# vim: set noet sw=4 ts=4: