diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2011-05-25 10:48:11 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2011-05-25 10:48:11 (GMT) |
commit | eda23ec881b784b77d402ac6576256b26bdbbb99 (patch) | |
tree | 534eebe951fae6a6d4f2b4e0909f5ef36e2b916d /Makefile | |
parent | f80467e51c38a8c6508111b01bd376653722641c (diff) | |
download | mxe-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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, \ ) \ |