diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-02-19 17:16:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-02-19 17:16:25 +0000 |
commit | 93eaab1b2dc5ae8ac48eb7f70df06d455c5a9513 (patch) | |
tree | 690cfa214012e92582662f75bd65be8e52edd38d /include | |
parent | d7b07dd5e93b44cb6ac3a2012886ed44314e4396 (diff) | |
download | upstream-93eaab1b2dc5ae8ac48eb7f70df06d455c5a9513.tar.gz upstream-93eaab1b2dc5ae8ac48eb7f70df06d455c5a9513.tar.bz2 upstream-93eaab1b2dc5ae8ac48eb7f70df06d455c5a9513.zip |
make cvs checkouts more flexible. packages must now specify either -r <tag> or -D <date> in their source revision specification. previously date based checkouts were not supported
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14566 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 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)) && \ |