[libpri-commits] qwell: branch 1.4 r602 - /branches/1.4/build_tools/make_version
SVN commits to the libpri project
libpri-commits at lists.digium.com
Tue Jul 29 17:47:38 CDT 2008
Author: qwell
Date: Tue Jul 29 17:47:37 2008
New Revision: 602
URL: http://svn.digium.com/view/libpri?view=rev&rev=602
Log:
I believe this is what was meant. (it matches how Asterisk does it)
Modified:
branches/1.4/build_tools/make_version
Modified: branches/1.4/build_tools/make_version
URL: http://svn.digium.com/view/libpri/branches/1.4/build_tools/make_version?view=diff&rev=602&r1=601&r2=602
==============================================================================
--- branches/1.4/build_tools/make_version (original)
+++ branches/1.4/build_tools/make_version Tue Jul 29 17:47:37 2008
@@ -31,18 +31,18 @@
if [ ${BRANCH} != 0 ] ; then
if [ -z ${RESULT} ] ; then
- RESULT="2${PART}"
+ RESULT="${PART}"
else
- RESULT="3${RESULT}-${PART}"
+ RESULT="${RESULT}-${PART}"
fi
break
fi
if [ ${TEAM} != 0 ] ; then
if [ -z ${RESULT} ] ; then
- RESULT="4${PART}"
+ RESULT="${PART}"
else
- RESULT="5${RESULT}-${PART}"
+ RESULT="${RESULT}-${PART}"
fi
continue
fi
@@ -64,8 +64,6 @@
fi
done
- RESULT="libpri"
-
if [ ${TAG} != 0 ] ; then
echo ${RESULT}
else
More information about the libpri-commits
mailing list