summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-11-28 12:11:32 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-11-28 12:11:32 (GMT)
commit3d1c3af5ab6aeb180e2251affb4737b306283192 (patch)
treeed18c545cb8b62dee5c939a5207e50352bf35b5d /Makefile
parent8469492843e5c4acec9652eab7eaf7aa9fe076c8 (diff)
downloadmxe-3d1c3af5ab6aeb180e2251affb4737b306283192.zip
mxe-3d1c3af5ab6aeb180e2251affb4737b306283192.tar.gz
mxe-3d1c3af5ab6aeb180e2251affb4737b306283192.tar.bz2
changed download mechanism to allow for simple integration of post-download filters, at the cost of not being able to contine interrupted downloads
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4bfe4c9..cacbc89 100644
--- a/Makefile
+++ b/Makefile
@@ -60,9 +60,9 @@ CHECK_PKG_ARCHIVE = \
DOWNLOAD_PKG_ARCHIVE = \
mkdir -p '$(PKG_DIR)' && \
$(if $($(1)_URL_2), \
- wget -T 30 -t 3 -c -O '$(PKG_DIR)/$($(1)_FILE)' '$($(1)_URL)' \
- || wget -c -O '$(PKG_DIR)/$($(1)_FILE)' '$($(1)_URL_2)', \
- wget -c -O '$(PKG_DIR)/$($(1)_FILE)' '$($(1)_URL)')
+ ( wget -T 30 -O - '$($(1)_URL)' || wget -O - '$($(1)_URL_2)' ), \
+ wget -O - '$($(1)_URL)') \
+ > '$(PKG_DIR)/$($(1)_FILE)'
SOURCEFORGE_FILES = \
wget -q -O- '$(1)' | \