summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-12-19 10:28:25 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-12-19 10:28:25 (GMT)
commit864448fec631fadbcf1f1b4a026e0fe3ce7f7b04 (patch)
tree62a5faad13267fd04387004130e2485e471ec7c9 /Makefile
parente2042071bad2ba428b1c713fd4ce1aac1ccc55f1 (diff)
downloadmxe-864448fec631fadbcf1f1b4a026e0fe3ce7f7b04.zip
mxe-864448fec631fadbcf1f1b4a026e0fe3ce7f7b04.tar.gz
mxe-864448fec631fadbcf1f1b4a026e0fe3ce7f7b04.tar.bz2
change number of download retries from 20 to 3 in case an alternative download location is available
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a31609c..7b9ce13 100644
--- a/Makefile
+++ b/Makefile
@@ -59,7 +59,7 @@ CHECK_PKG_ARCHIVE = \
DOWNLOAD_PKG_ARCHIVE = \
mkdir -p '$(PKG_DIR)' && \
$(if $($(1)_URL_2), \
- ( wget -T 30 -O- '$($(1)_URL)' || wget -O- '$($(1)_URL_2)' ), \
+ ( wget -T 30 -t 3 -O- '$($(1)_URL)' || wget -O- '$($(1)_URL_2)' ), \
wget -O- '$($(1)_URL)') \
$(if $($(1)_FIX_GZIP), \
| gzip -d | gzip -9n, \