diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-07-12 12:18:36 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-07-12 12:18:36 +0000 |
commit | ef437f5e67adbe2ac2d7cb17dd38f12d9ed4be52 (patch) | |
tree | 7410ca17381705c3e2555c0e94d72a50d26fe7d7 /include | |
parent | d8c79faf4190c45ebb37b9a2e346c37994debedf (diff) | |
download | mtk-20170518-ef437f5e67adbe2ac2d7cb17dd38f12d9ed4be52.zip mtk-20170518-ef437f5e67adbe2ac2d7cb17dd38f12d9ed4be52.tar.gz mtk-20170518-ef437f5e67adbe2ac2d7cb17dd38f12d9ed4be52.tar.bz2 |
SVN checkouts should be made non-interactive, so that https repositories with auto-signed repositories can be checked out without user interaction
SVN-Revision: 11785
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 0558d49..74986be 100644 --- a/include/download.mk +++ b/include/download.mk @@ -67,7 +67,7 @@ define DownloadMethod/svn cd $(TMP_DIR)/dl && \ rm -rf $(SUBDIR) && \ [ \! -d $(SUBDIR) ] && \ - svn co -r$(VERSION) $(URL) $(SUBDIR) && \ + svn co --non-interactive -r$(VERSION) $(URL) $(SUBDIR) && \ find $(SUBDIR) -name .svn | xargs rm -rf && \ echo "Packing checkout..." && \ $(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \ |