[GRASS-SVN] r63880 - grass/branches/releasebranch_7_0
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Dec 30 09:51:54 PST 2014
Author: neteler
Date: 2014-12-30 09:51:54 -0800 (Tue, 30 Dec 2014)
New Revision: 63880
Modified:
grass/branches/releasebranch_7_0/configure.in
Log:
configure: hardcode GRASS_VERSION_SVN=00000 for platforms without svnversion program available (needed for g.version)
Modified: grass/branches/releasebranch_7_0/configure.in
===================================================================
--- grass/branches/releasebranch_7_0/configure.in 2014-12-30 17:34:27 UTC (rev 63879)
+++ grass/branches/releasebranch_7_0/configure.in 2014-12-30 17:51:54 UTC (rev 63880)
@@ -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