summaryrefslogtreecommitdiffstats
path: root/include/download.mk
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-07-12 12:18:36 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-07-12 12:18:36 +0000
commitcd040cbb063675937bee1dad89457e99a5a8587e (patch)
tree6587978f2397400051294e6e9b9a8ef229d3ab30 /include/download.mk
parentcd14e2f73b251eb13ab413641fbe3b7b8ade031d (diff)
SVN checkouts should be made non-interactive, so that https repositories with auto-signed repositories can be checked out without user interaction
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11785 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/download.mk')
-rw-r--r--include/download.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/download.mk b/include/download.mk
index 0558d4979..74986be59 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)) && \