[Libreoffice-commits] core.git: Makefile.fetch
Bryan Quigley
gquigs at gmail.com
Thu Jan 26 06:37:37 UTC 2017
Makefile.fetch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 424897ba348093ab1697c676a3e44b9060c5b2da
Author: Bryan Quigley <gquigs at gmail.com>
Date: Wed Jan 25 15:13:25 2017 -0500
Stop working around broken IPv6 site
This basically reverts 324212ce01c10a8811d25c95d1ae6a83d8214f3d which
forced wget to only use IPv4.
dev-www.libreoffice.org's IPv6 support was broken for a while. It
appears to be back to working.
Change-Id: Ib235ddd5719089eaf9d4559bd913571fc46069d1
Reviewed-on: https://gerrit.libreoffice.org/33558
Reviewed-by: jan iversen <jani at documentfoundation.org>
Tested-by: jan iversen <jani at documentfoundation.org>
diff --git a/Makefile.fetch b/Makefile.fetch
index db62719..a350b2f 100644
--- a/Makefile.fetch
+++ b/Makefile.fetch
@@ -11,7 +11,7 @@ fetch_LOGFILE := $(TARFILE_LOCATION)/fetch.log
ifneq (,$(WGET))
define fetch_Download__wget_command
-&& bash -c '$(WGET) --progress=dot:mega -4 -Q 0 -P "." -l 0 -nd -nH -N --no-use-server-timestamps $1/$2 2>&1 | tee -a $(fetch_LOGFILE) && [ $$PIPESTATUS -eq 0 ]'
+&& bash -c '$(WGET) --progress=dot:mega -Q 0 -P "." -l 0 -nd -nH -N --no-use-server-timestamps $1/$2 2>&1 | tee -a $(fetch_LOGFILE) && [ $$PIPESTATUS -eq 0 ]'
endef
else
More information about the Libreoffice-commits
mailing list