From: Florian Fainelli Date: Sat, 12 Jul 2008 12:18:36 +0000 (+0000) Subject: SVN checkouts should be made non-interactive, so that https repositories with auto... X-Git-Tag: reboot~26146 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=ef437f5e67adbe2ac2d7cb17dd38f12d9ed4be52;p=openwrt%2Fstaging%2Fchunkeey.git 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 --- diff --git a/include/download.mk b/include/download.mk index 0558d4979e..74986be598 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)) && \