changeset 1518:223dfd0660bc

change number of download retries from 20 to 3 in case an alternative download location is available
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 19 Dec 2010 11:28:25 +0100
parents 8aeb650b7ab7
children c7fd27f6874e
files Makefile
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sun Dec 19 11:22:18 2010 +0100
+++ b/Makefile	Sun Dec 19 11:28:25 2010 +0100
@@ -59,7 +59,7 @@
 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, \