diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-03-19 13:44:47 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-03-19 13:44:47 +0000 |
commit | 08a790efb6a71152a293735a174332693a9d15ae (patch) | |
tree | db6d68a75a28eca4be80574ef026472215c53635 /include | |
parent | 51c45acd0ec830580674393d3a5f7002cafbf721 (diff) | |
download | mtk-20170518-08a790efb6a71152a293735a174332693a9d15ae.zip mtk-20170518-08a790efb6a71152a293735a174332693a9d15ae.tar.gz mtk-20170518-08a790efb6a71152a293735a174332693a9d15ae.tar.bz2 |
accept unknown server certificates by default on svn download
Some packages sources need to be checked out from server with unknown
certificates, silently accept by default in order not to stop builds, thanks rhk.
SVN-Revision: 20299
Diffstat (limited to 'include')
-rw-r--r-- | include/download.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/download.mk b/include/download.mk index e0d743a..4e20146 100644 --- a/include/download.mk +++ b/include/download.mk @@ -70,7 +70,7 @@ define DownloadMethod/svn cd $(TMP_DIR)/dl && \ rm -rf $(SUBDIR) && \ [ \! -d $(SUBDIR) ] && \ - svn export --non-interactive -r$(VERSION) $(URL) $(SUBDIR) && \ + svn export --non-interactive --trust-server-cert -r$(VERSION) $(URL) $(SUBDIR) && \ echo "Packing checkout..." && \ $(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \ mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/ && \ |