diff options
author | Bryan Quigley <gquigs@gmail.com> | 2015-10-02 00:40:15 -0400 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-02 06:25:57 +0000 |
commit | 324212ce01c10a8811d25c95d1ae6a83d8214f3d (patch) | |
tree | f4aed86c67a9a75e5e79dfb56aa8c63ad693c8f8 /Makefile.fetch | |
parent | 2fb9c1abbd8fa786a777511f20eeb95313ff4b1d (diff) |
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@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'Makefile.fetch')
-rw-r--r-- | Makefile.fetch | 2 |
1 files changed, 1 insertions, 1 deletions
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 |