summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2014-08-04 19:34:03 +0200
committerMichael Stahl <mstahl@redhat.com>2014-08-04 19:04:34 +0000
commit6cbe7ec6a027aab829e1a800542ec3796ec719ae (patch)
treebea55c4b3e58fb03cfb506cea45f50eca2f16b95
parent5dcfa10a547eb60b826128a72b8eccc198e074a6 (diff)
fdo#82136 fix download of submodule tarballs
Change-Id: I07775391cb905f0563d1d1b3cae6f02b12d10f90 (cherry picked from commit 922b03f0818baa65e4c036f58fe7f8c29776b81e) Reviewed-on: https://gerrit.libreoffice.org/10738 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 09b94651338d..9db0823be7de 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -195,7 +195,7 @@ $(if $(gb_LO_VER),,$(error Error while retrieving $$lo_sources_ver from $(SRCDIR
get-submodules: | download
ifneq ($(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),$(SRCDIR)/src/libreoffice-$(i)-$(gb_LO_VER)),$(wildcard $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),$(SRCDIR)/src/libreoffice-$(i)-$(gb_LO_VER))))
$(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
- $(call fetch_Download_item,http://download.documentfoundation.org/libreoffice/src/$(shell echo $(gb_LO_VER) | sed -e "s/\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/"),libreoffice-$(i)-$(gb_LO_VER).tar.xz,no-check))
+ $(call fetch_Download_item_unchecked,http://download.documentfoundation.org/libreoffice/src/$(shell echo $(gb_LO_VER) | sed -e "s/\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/"),libreoffice-$(i)-$(gb_LO_VER).tar.xz))
$(SRCDIR)/bin/unpack-sources $(SRCDIR) $(foreach i,$(subst helpcontent2,help,$(GIT_NEEDED_SUBMODULES)),\
$(TARFILE_LOCATION)/libreoffice-$(i)-$(gb_LO_VER).tar.xz)
endif