[GRASS-SVN] r63881 - grass/trunk
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Dec 30 09:52:10 PST 2014
Author: neteler
Date: 2014-12-30 09:52:10 -0800 (Tue, 30 Dec 2014)
New Revision: 63881
Modified:
grass/trunk/configure.in
Log:
configure: hardcode GRASS_VERSION_SVN=00000 for platforms without svnversion program available (needed for g.version)
Modified: grass/trunk/configure.in
===================================================================
--- grass/trunk/configure.in 2014-12-30 17:51:54 UTC (rev 63880)
+++ grass/trunk/configure.in 2014-12-30 17:52:10 UTC (rev 63881)
@@ -126,12 +126,12 @@
LIB_VER=`echo ${GRASS_VERSION_NUMBER} | sed 's/^\([0-9.]*\).*$/\1/'`
changequote([,])
-GRASS_VERSION_SVN=
+GRASS_VERSION_SVN=00000
AC_PATH_PROG(SVN_VERSION, svnversion, no)
if test "$SVN_VERSION" != "no" ; then
GRASS_VERSION_SVN=`$SVN_VERSION -c | cut -f2 -d:`
if test "$GRASS_VERSION_SVN" = "exported" -o "$GRASS_VERSION_SVN" = "Unversioned directory" ; then
- GRASS_VERSION_SVN=
+ GRASS_VERSION_SVN=00000
fi
fi
More information about the grass-commit
mailing list