# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1316158076 0 # Node ID 52e3aa735bdb794992ac11a3acadd5d5f77166ba # Parent e4b13cd7a0020a31da515c60fff6f10ac0cd99f6 Attempt to fix parsing errors with the double : separated version notation sometimes returned by svnversion. diff -r e4b13cd7a002 -r 52e3aa735bdb configure --- a/configure Fri Sep 16 06:58:18 2011 +0000 +++ b/configure Fri Sep 16 07:27:56 2011 +0000 @@ -3395,7 +3395,7 @@ if test x"$SVNVERSION" = x; then SVNVERSION=0 else - SVNVERSION="\` $SVNVERSION -n . | tr -d M \`" + SVNVERSION="\` $SVNVERSION -n . | cut -d \":\" -f 1 | tr -d MS \`" fi ac_aux_dir= diff -r e4b13cd7a002 -r 52e3aa735bdb configure.in --- a/configure.in Fri Sep 16 06:58:18 2011 +0000 +++ b/configure.in Fri Sep 16 07:27:56 2011 +0000 @@ -36,7 +36,7 @@ if test x"$SVNVERSION" = x; then SVNVERSION=0 else - SVNVERSION="\` $SVNVERSION -n . | tr -d M \`" + SVNVERSION="\` $SVNVERSION -n . | cut -d \":\" -f 1 | tr -d MS \`" fi AC_PROG_INSTALL