summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2012-09-16 08:26:07 (GMT)
committerTony Theodore <tonyt@logyst.com>2012-09-16 08:26:07 (GMT)
commitcf12ed3972b9972395b33341ac5b7bf1cc3a59b1 (patch)
tree021473fbae13f8904a375a37d0d950d6a2f330f5 /Makefile
parent936a7f7b9ae33986a8e060e0541216c4fcd62a2a (diff)
downloadmxe-cf12ed3972b9972395b33341ac5b7bf1cc3a59b1.zip
mxe-cf12ed3972b9972395b33341ac5b7bf1cc3a59b1.tar.gz
mxe-cf12ed3972b9972395b33341ac5b7bf1cc3a59b1.tar.bz2
fix bracketing of wget calls
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8f02c53..8f77376 100644
--- a/Makefile
+++ b/Makefile
@@ -66,8 +66,8 @@ 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) -O- '$(PKG_MIRROR)/$($(1)_FILE)'), \
- $(WGET) -O- '$($(1)_URL)' || $(WGET) -O- '$(PKG_MIRROR)/$($(1)_FILE)') \
+ $(WGET) -O- '$(PKG_MIRROR)/$($(1)_FILE)' ), \
+ ( $(WGET) -O- '$($(1)_URL)' || $(WGET) -O- '$(PKG_MIRROR)/$($(1)_FILE)' )) \
$(if $($(1)_FIX_GZIP), \
| gzip -d | gzip -9n, \
) \