changeset 1847:f6e74296023b

avoid HTTPS issues when downloading files (the checksum test remains, of course)
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 25 May 2011 12:48:11 +0200
parents 9b1084df1450
children 17c00e8cff5b
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Wed May 25 12:46:57 2011 +0200
+++ b/Makefile	Wed May 25 12:48:11 2011 +0200
@@ -62,8 +62,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- '$($(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, \
         ) \