summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2014-06-17 11:20:37 (GMT)
committerTony Theodore <tonyt@logyst.com>2014-06-17 11:20:37 (GMT)
commit128adcdac803a7018eb26ad876693f70acf91b44 (patch)
tree814f08be96957c13669b35ed604b748c21c32717 /Makefile
parentd53a3a434846f2b5d97567dd07cc804da3b4e291 (diff)
downloadmxe-128adcdac803a7018eb26ad876693f70acf91b44.zip
mxe-128adcdac803a7018eb26ad876693f70acf91b44.tar.gz
mxe-128adcdac803a7018eb26ad876693f70acf91b44.tar.bz2
Makefile: reduce wget timeouts and retries
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 49302c7..ec023ee 100644
--- a/Makefile
+++ b/Makefile
@@ -109,10 +109,10 @@ DOWNLOAD_PKG_ARCHIVE = \
mkdir -p '$(PKG_DIR)' && \
$(if $($(1)_URL_2), \
( $(WGET) -T 30 -t 3 -O- '$($(1)_URL)' || \
- $(WGET) -O- '$($(1)_URL_2)' || \
+ $(WGET) -T 30 -t 3 -O- '$($(1)_URL_2)' || \
$(WGET) -O- $(PKG_MIRROR)/`$(call ESCAPE_PKG,$(1))` || \
$(WGET) -O- $(PKG_CDN)/`$(call ESCAPE_PKG,$(1))` ), \
- ( $(WGET) -O- '$($(1)_URL)' || \
+ ( $(WGET) -T 30 -t 3 -O- '$($(1)_URL)' || \
$(WGET) -O- $(PKG_MIRROR)/`$(call ESCAPE_PKG,$(1))` || \
$(WGET) -O- $(PKG_CDN)/`$(call ESCAPE_PKG,$(1))` )) \
$(if $($(1)_FIX_GZIP), \