From: Felix Fietkau Date: Thu, 19 Feb 2009 17:16:25 +0000 (+0000) Subject: make cvs checkouts more flexible. packages must now specify either -r or -D... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=1050038008606fb9414f488ecd391fb0a0e848eb make cvs checkouts more flexible. packages must now specify either -r or -D in their source revision specification. previously date based checkouts were not supported SVN-Revision: 14566 --- diff --git a/include/download.mk b/include/download.mk index 7a4d90da98..0a2dd3c03f 100644 --- a/include/download.mk +++ b/include/download.mk @@ -53,7 +53,7 @@ define DownloadMethod/cvs cd $(TMP_DIR)/dl && \ rm -rf $(SUBDIR) && \ [ \! -d $(SUBDIR) ] && \ - cvs -d $(URL) co -r $(VERSION) $(SUBDIR) && \ + cvs -d $(URL) co $(VERSION) $(SUBDIR) && \ find $(SUBDIR) -name CVS | xargs rm -rf && \ echo "Packing checkout..." && \ $(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \