From bcb11f24a014ac30163b2678ae1756c6b20d251a Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Thu, 1 Sep 2016 11:48:01 +0000 Subject: [PATCH] remove the word final from the tarball generation --- debian/orig-tar.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index ea523854..ab260ebd 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -105,8 +105,11 @@ else fi if test -n "$RCRELEASE"; then -# VERSION=$MAJOR_VERSION"+"$REVISION # WAS TAG - VERSION=$MAJOR_VERSION"~+"$TAG + if test "$TAG" = "final"; then + VERSION=$MAJOR_VERSION + else + VERSION=$MAJOR_VERSION"~+"$TAG + fi FULL_VERSION="llvm-toolchain-"$MAJOR_VERSION"_"$VERSION else VERSION=$CURRENT_VERSION"~svn"$REVISION