From abf056381517dedf6c90e855499da9ad01c1cb48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Wed, 6 Mar 2013 18:07:50 +0100 Subject: [PATCH] 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 --- libports/ports/libssh.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libports/ports/libssh.mk b/libports/ports/libssh.mk index ff2873ffe6..4bf0594a5c 100644 --- a/libports/ports/libssh.mk +++ b/libports/ports/libssh.mk @@ -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 $@