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

SVN-Revision: 14566
master
Felix Fietkau 16 years ago
parent 1b55cf14cc
commit 71f2a68d52
  1. 2
      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)) && \

Loading…
Cancel
Save