Porting r53478 into mainline:

Update to build_llvm. Don't output a floating point number for the version.

llvm-svn: 53484
This commit is contained in:
Bill Wendling 2008-07-11 22:42:10 +00:00
parent afe2c0be34
commit 5c77307c2b
1 changed files with 8 additions and 0 deletions

View File

@ -89,6 +89,14 @@ if [ \! -f Makefile.config ]; then
|| exit 1
fi
SUBVERSION=`echo $RC_ProjectSourceVersion | sed -e 's/.*\.//'`
if [ "x$SUBVERSION" != "x$RC_ProjectSourceVersion" ]; then
LLVM_SUBMIT_SUBVERSION=`printf "%02d" $SUBVERSION`
RC_ProjectSourceVersion=`echo $RC_ProjectSourceVersion | sed -e 's/\..*//'`
LLVM_SUBMIT_VERSION=$RC_ProjectSourceVersion
fi
if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
LLVM_VERSION="$LLVM_SUBMIT_VERSION"
else