diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-12-19 10:28:25 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-12-19 10:28:25 (GMT) |
commit | 864448fec631fadbcf1f1b4a026e0fe3ce7f7b04 (patch) | |
tree | 62a5faad13267fd04387004130e2485e471ec7c9 /Makefile | |
parent | e2042071bad2ba428b1c713fd4ce1aac1ccc55f1 (diff) | |
download | mxe-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, \ |