forked from OSchip/llvm-project
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:
parent
afe2c0be34
commit
5c77307c2b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue