libports: workaround for downloading libssh

Since checking if the certificate is valid is not that important
(we currently do not check the signature of the archive which is the
bigger issue) we disable the checking to prevent certain wget version
from refusing to download the archive.

Fixes #681
This commit is contained in:
Josef Söntgen 2013-03-06 18:07:50 +01:00 committed by Norman Feske
parent 613784f560
commit abf0563815
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ $(CONTRIB_DIR)/$(LIBSSH): clean-libssh
# Port-specific local rules
#
$(DOWNLOAD_DIR)/$(LIBSSH_TGZ):
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(LIBSSH_URL) && touch $@
$(VERBOSE)wget --no-check-certificate -c -P $(DOWNLOAD_DIR) $(LIBSSH_URL) && touch $@
$(CONTRIB_DIR)/$(LIBSSH): $(DOWNLOAD_DIR)/$(LIBSSH_TGZ)
$(VERBOSE)tar xfz $< -C $(CONTRIB_DIR) && touch $@