You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ns...@apache.org on 2010/12/04 10:23:24 UTC

svn commit: r1042120 - /couchdb/trunk/configure.ac

Author: nslater
Date: Sat Dec  4 09:23:22 2010
New Revision: 1042120

URL: http://svn.apache.org/viewvc?rev=1042120&view=rev
Log:
apply fix for COUCHDB-975, thanks Timothy Smith

Modified:
    couchdb/trunk/configure.ac

Modified: couchdb/trunk/configure.ac
URL: http://svn.apache.org/viewvc/couchdb/trunk/configure.ac?rev=1042120&r1=1042119&r2=1042120&view=diff
==============================================================================
--- couchdb/trunk/configure.ac (original)
+++ couchdb/trunk/configure.ac Sat Dec  4 09:23:22 2010
@@ -243,7 +243,7 @@ fi
 
 erlang_version_error="The installed Erlang version is less than 5.6.5 (R12B05)."
 
-version="`${ERL} -version 2>&1 | ${SED} "s/[[^0-9]]/ /g"`"
+version="`${ERL} -version 2>&1 | ${SED} 's/[[^0-9]]/ /g'`"
 
 if test `echo $version | ${AWK} "{print \\$1}"` -lt 5; then
     AC_MSG_ERROR([$erlang_version_error])