From 324212ce01c10a8811d25c95d1ae6a83d8214f3d Mon Sep 17 00:00:00 2001 From: Bryan Quigley Date: Fri, 2 Oct 2015 00:40:15 -0400 Subject: [PATCH] Workaround broken ipv6 site This just forces wget to use ipv4 when downloading more context here: http://lists.freedesktop.org/archives/libreoffice/2015-October/070412.html Change-Id: Id7e6a2ccd2301aa0fd1456d20309fe4936b4a20b Reviewed-on: https://gerrit.libreoffice.org/19090 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- Makefile.fetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.fetch b/Makefile.fetch index 87c8b8a21d39..8429228af43e 100644 --- a/Makefile.fetch +++ b/Makefile.fetch @@ -11,7 +11,7 @@ fetch_LOGFILE := $(TARFILE_LOCATION)/fetch.log ifneq (,$(WGET)) define fetch_Download__wget_command -&& $(WGET) --progress=dot:mega -Q 0 -P "." -l 0 -nd -nH -N $1/$2 2>&1 | tee -a $(fetch_LOGFILE) && [ $$PIPESTATUS -eq 0 ] +&& $(WGET) --progress=dot:mega -4 -Q 0 -P "." -l 0 -nd -nH -N $1/$2 2>&1 | tee -a $(fetch_LOGFILE) && [ $$PIPESTATUS -eq 0 ] endef else