summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>2012-08-11 11:50:46 +0000
committerrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>2012-08-11 11:50:46 +0000
commit2164d5856600b1e10f4a42b41aabc6923555bce0 (patch)
tree0ebbe7eff6173d85751c3b393263a24b6cdba9ef
parentcde69102ed9447440b302c4bde50e541719781a3 (diff)
downloadlibapr-util-2164d5856600b1e10f4a42b41aabc6923555bce0.tar.gz
Fix missing end quote.
Another followup to r1371820. Backport of r1371923 from APR trunk. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/branches/1.5.x@1371924 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build/dbm.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/build/dbm.m4 b/build/dbm.m4
index 1094f69f..d65cd850 100644
--- a/build/dbm.m4
+++ b/build/dbm.m4
@@ -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)