From 391e1accd81fbdf86edd88a03e08ac80cb314cd3 Mon Sep 17 00:00:00 2001 From: Emmanuel Milou Date: Wed, 1 Aug 2012 15:27:44 -0400 Subject: [PATCH] [#14162] Fix version number for stable release --- tools/build-system/build_tarball.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/build-system/build_tarball.sh b/tools/build-system/build_tarball.sh index 6e78603f6..9e73010f9 100755 --- a/tools/build-system/build_tarball.sh +++ b/tools/build-system/build_tarball.sh @@ -12,12 +12,12 @@ if [ ! -e daemon/configure.ac ] ; then fi if [ "z$1" = "z" ] ; then - echo "Usage: $0 VERSION_NUMBER" + echo "Usage: $0 SOFTWARE_VERSION_NUMBER" exit 2 fi -VERSION=$1 -BUILDDIR=sflphone-$VERSION +SOFTWARE_VERSION=$1 +BUILDDIR=sflphone-$SOFTWARE_VERSION if [ -e $BUILDDIR ] ; then echo "The build directory ($BUILDDIR) already exists. Delete it first." @@ -98,5 +98,5 @@ find -name *.in~ -type f -exec rm {} \; popd # builddir rm -f sflphone-*.tar.gz -tar zcf sflphone-$VERSION.tar.gz sflphone-$VERSION +tar zcf sflphone-$SOFTWARE_VERSION.tar.gz sflphone-$SOFTWARE_VERSION rm -rf $BUILDDIR