summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2011-05-25 10:48:11 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2011-05-25 10:48:11 (GMT)
commiteda23ec881b784b77d402ac6576256b26bdbbb99 (patch)
tree534eebe951fae6a6d4f2b4e0909f5ef36e2b916d /Makefile
parentf80467e51c38a8c6508111b01bd376653722641c (diff)
downloadmxe-eda23ec881b784b77d402ac6576256b26bdbbb99.zip
mxe-eda23ec881b784b77d402ac6576256b26bdbbb99.tar.gz
mxe-eda23ec881b784b77d402ac6576256b26bdbbb99.tar.bz2
avoid HTTPS issues when downloading files (the checksum test remains, of course)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e7232f9..b6e3eb3 100644
--- a/Makefile
+++ b/Makefile
@@ -62,8 +62,8 @@ CHECK_PKG_ARCHIVE = \
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- '$($(1)_URL)') \
+ ( wget -T 30 -t 3 --no-check-certificate -O- '$($(1)_URL)' || wget --no-check-certificate -O- '$($(1)_URL_2)' ), \
+ wget --no-check-certificate -O- '$($(1)_URL)') \
$(if $($(1)_FIX_GZIP), \
| gzip -d | gzip -9n, \
) \