[Libreoffice-commits] core.git: Makefile.fetch

Bryan Quigley gquigs at gmail.com
Thu Oct 1 23:26:19 PDT 2015


 Makefile.fetch |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 324212ce01c10a8811d25c95d1ae6a83d8214f3d
Author: Bryan Quigley <gquigs at gmail.com>
Date:   Fri Oct 2 00:40:15 2015 -0400

    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 <noelgrandin at gmail.com>
    Tested-by: Noel Grandin <noelgrandin at gmail.com>

diff --git a/Makefile.fetch b/Makefile.fetch
index 87c8b8a..8429228 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


More information about the Libreoffice-commits mailing list