[GRASS-SVN] r57676 - grass/branches/releasebranch_6_4
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Sep 13 22:02:25 PDT 2013
Author: hamish
Date: 2013-09-13 22:02:25 -0700 (Fri, 13 Sep 2013)
New Revision: 57676
Modified:
grass/branches/releasebranch_6_4/configure
grass/branches/releasebranch_6_4/configure.in
Log:
support for newer svnversion output string (#587, merge from trunk)
Modified: grass/branches/releasebranch_6_4/configure
===================================================================
--- grass/branches/releasebranch_6_4/configure 2013-09-14 05:01:35 UTC (rev 57675)
+++ grass/branches/releasebranch_6_4/configure 2013-09-14 05:02:25 UTC (rev 57676)
@@ -1319,7 +1319,7 @@
if test "$SVN_VERSION" != "no" ; then
GRASS_VERSION_SVN=`$SVN_VERSION -c | cut -f2 -d:`
- if test "$GRASS_VERSION_SVN" = "exported" ; then
+ if test "$GRASS_VERSION_SVN" = "exported" -o "$GRASS_VERSION_SVN" = "Unversioned directory" ; then
GRASS_VERSION_SVN=
fi
fi
Modified: grass/branches/releasebranch_6_4/configure.in
===================================================================
--- grass/branches/releasebranch_6_4/configure.in 2013-09-14 05:01:35 UTC (rev 57675)
+++ grass/branches/releasebranch_6_4/configure.in 2013-09-14 05:02:25 UTC (rev 57676)
@@ -130,7 +130,7 @@
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" ; then
+ if test "$GRASS_VERSION_SVN" = "exported" -o "$GRASS_VERSION_SVN" = "Unversioned directory" ; then
GRASS_VERSION_SVN=
fi
fi
More information about the grass-commit
mailing list