1
1

Add the "r" number at the end of the version if we're in a SVN tree

This commit was SVN r965.
Этот коммит содержится в:
Jeff Squyres 2004-03-26 04:25:54 +00:00
родитель 60dc2b7bbe
Коммит 46d0f47357

Просмотреть файл

@ -32,10 +32,13 @@ else
LAM_VERSION="${LAM_VERSION}b$LAM_BETA_VERSION" LAM_VERSION="${LAM_VERSION}b$LAM_BETA_VERSION"
fi fi
if test "$LAM_SVN_VERSION" = "1"; then if test "`expr $LAM_SVN_VERSION \> 0`" = "1"; then
LAM_VERSION="${LAM_VERSION}svn" if test -d .svn; then
elif test "`expr $LAM_SVN_VERSION \> 0`" = "1"; then ver="r`svn info . | grep Revision | cut -d\ -f 2`"
LAM_VERSION="${LAM_VERSION}svn$LAM_SVN_VERSION" else
ver="svn`date '+%m%d%Y'`"
fi
LAM_VERSION="${LAM_VERSION}$ver"
fi fi
if test "$option" = ""; then if test "$option" = ""; then