summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-06-19 15:18:13 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-06-19 15:18:13 +0000
commit0b7ea6d2b0933f8d5230dec6200efa41a6e6c0a2 (patch)
tree2f1e94c6ec884397a4c6e630204545854a264768 /Makefile
parent25c6da6f707e5b3dc435215b36aef187601c0043 (diff)
remove support for CVS checkouts
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1119 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 2 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index 7f0023e..3119ad3 100644
--- a/Makefile
+++ b/Makefile
@@ -98,15 +98,8 @@ ifneq ($(wildcard .version),)
ZAPTELVERSION:=$(shell cat .version)
endif
-# CVS mirrors of SVN have .svnrevision files showing
-# which SVN revision they are based on, and .svnbranch
-# showing the branch they are made from
-ifneq ($(wildcard .svnrevision),)
- ZAPTELVERSION:=SVN-$(shell cat .svnbranch)-r$(shell cat .svnrevision)
-else
- ifneq ($(wildcard .svn),)
- ZAPTELVERSION=SVN-$(shell build_tools/make_svn_branch_name)
- endif
+ifneq ($(wildcard .svn),)
+ ZAPTELVERSION=SVN-$(shell build_tools/make_svn_branch_name)
endif
TZOBJS:=zonedata.lo tonezone.lo
@@ -405,15 +398,6 @@ update:
grep ^C update.out | cut -b4- ; \
fi ; \
rm -f update.out; \
- elif [ -d CVS ]; then \
- echo "Updating from CVS..." ; \
- cvs -q -z3 update -Pd | tee update.out; \
- rm -f .version; \
- if [ `grep -c ^C update.out` -gt 0 ]; then \
- echo ; echo "The following files have conflicts:" ; \
- grep ^C update.out | cut -d' ' -f2- ; \
- fi ; \
- rm -f update.out; \
else \
echo "Not under version control"; \
fi