From 2f3060d40a7c6972a2054514e59cea36e0437951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Fri, 28 Apr 2017 11:41:44 +0100 Subject: [PATCH] download via https rather than http MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2840d116d1a59e19f5869c0550c6ed3d1b911304 Reviewed-on: https://gerrit.libreoffice.org/37063 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- Makefile.fetch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.fetch b/Makefile.fetch index 5958db10db09..3b0cf56facd6 100644 --- a/Makefile.fetch +++ b/Makefile.fetch @@ -212,14 +212,14 @@ $(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,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: