summaryrefslogtreecommitdiff
path: root/build_tools
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-02-01 00:55:41 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-02-01 00:55:41 +0000
commit13179eb2fc4b2384550a1681513986584634bfd6 (patch)
tree5e450b5b4ef50a7dfb8268e75d04785ab0adc13e /build_tools
parent7976f3ed8ba610c565d4cd80a7f8c0643005de49 (diff)
add support for Digium's High Performance Echo Canceller
rework the top-level Makefile so kernel 2.6 modules are built by a dedicated Makefile git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@2076 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/make_svn_branch_name14
1 files changed, 14 insertions, 0 deletions
diff --git a/build_tools/make_svn_branch_name b/build_tools/make_svn_branch_name
index 1fe7507..525d282 100755
--- a/build_tools/make_svn_branch_name
+++ b/build_tools/make_svn_branch_name
@@ -1,6 +1,7 @@
#!/bin/sh
PARTS=`LANG=C svn info | grep URL | awk '{print $2;}' | sed -e s:^.*/svn/zaptel/:: | sed -e 's:/: :g'`
+BETA=0
BRANCH=0
TEAM=0
@@ -14,6 +15,12 @@ fi
for PART in $PARTS
do
+ if [ ${BETA} != 0 ]
+ then
+ RESULT="${RESULT}-${PART}"
+ break
+ fi
+
if [ ${BRANCH} != 0 ]
then
RESULT="${RESULT}-${PART}"
@@ -26,6 +33,13 @@ do
continue
fi
+ if [ "${PART}" = "betas" ]
+ then
+ BETA=1
+ RESULT="beta"
+ continue
+ fi
+
if [ "${PART}" = "branches" ]
then
BRANCH=1