avoid HTTPS issues when downloading files (the checksum test remains, of course)

This commit is contained in:
Volker Grabsch 2011-05-25 12:48:11 +02:00
parent f80467e51c
commit eda23ec881
1 changed files with 2 additions and 2 deletions

View File

@ -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, \
) \