You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rj...@apache.org on 2012/08/11 13:50:47 UTC

svn commit: r1371924 - in /apr/apr-util/branches/1.5.x: ./ build/dbm.m4

Author: rjung
Date: Sat Aug 11 11:50:46 2012
New Revision: 1371924

URL: http://svn.apache.org/viewvc?rev=1371924&view=rev
Log:
Fix missing end quote.
Another followup to r1371820.

Backport of r1371923 from APR trunk.

Modified:
    apr/apr-util/branches/1.5.x/   (props changed)
    apr/apr-util/branches/1.5.x/build/dbm.m4

Propchange: apr/apr-util/branches/1.5.x/
------------------------------------------------------------------------------
  Merged /apr/apr/trunk:r1371923

Modified: apr/apr-util/branches/1.5.x/build/dbm.m4
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/build/dbm.m4?rev=1371924&r1=1371923&r2=1371924&view=diff
==============================================================================
--- apr/apr-util/branches/1.5.x/build/dbm.m4 (original)
+++ apr/apr-util/branches/1.5.x/build/dbm.m4 Sat Aug 11 11:50:46 2012
@@ -425,8 +425,8 @@ AC_DEFUN([APU_CHECK_DB], [
     fi
     ;;
   db[[45]] | db[[45]][[0-9]])
-    db_major=`echo "$requested" | sed -e 's/db//' -e 's/.$//`
-    db_minor=`echo "$requested" | sed -e 's/db//' -e 's/.//`
+    db_major=`echo "$requested" | sed -e 's/db//' -e 's/.$//'`
+    db_minor=`echo "$requested" | sed -e 's/db//' -e 's/.//'`
     APU_CHECK_DBXY("$check_places", "$db_major", "$db_minor")
     if test "$apu_db_version" != "$db_major"; then
       AC_MSG_ERROR(Berkeley db$db_major not found)