mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-20 17:52:52 +00:00
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:
parent
613784f560
commit
abf0563815
@ -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 $@
|
||||
|
Loading…
x
Reference in New Issue
Block a user