diff options
author | John Crispin <blogic@openwrt.org> | 2008-08-27 15:24:25 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2008-08-27 15:24:25 +0000 |
commit | b3678955834078bd10b8f8bfd7f63d3ae45417f3 (patch) | |
tree | fca0c987ac2b940e271a96feb9e7ab7365fb9107 /include | |
parent | feb2913734966a6b15779082516b8c5d9e91d836 (diff) | |
download | upstream-b3678955834078bd10b8f8bfd7f63d3ae45417f3.tar.gz upstream-b3678955834078bd10b8f8bfd7f63d3ae45417f3.tar.bz2 upstream-b3678955834078bd10b8f8bfd7f63d3ae45417f3.zip |
fixes cvs download, signed-off by Bruno Randolf
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12401 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 b185f1ac36..a8e0e99f3f 100644 --- a/include/download.mk +++ b/include/download.mk @@ -51,7 +51,7 @@ define DownloadMethod/cvs cd $(TMP_DIR)/dl && \ rm -rf $(SUBDIR) && \ [ \! -d $(SUBDIR) ] && \ - cvs co -r$(VERSION) $(URL) $(SUBDIR) && \ + cvs -d $(URL) co -r $(VERSION) $(SUBDIR) && \ find $(SUBDIR) -name CVS | xargs rm -rf && \ echo "Packing checkout..." && \ $(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \ |