diff options
author | Rob Austein <sra@hactrn.net> | 2013-09-23 16:31:12 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-09-23 16:31:12 +0000 |
commit | 602f2b2fb02e5ba038803dc88ee70f663b30803f (patch) | |
tree | 13b0ebd0f3f36dbe303e5a2a2400b78e12209e18 | |
parent | de1827f6dc6c171c0dc6887f3ba871e0f77211fa (diff) |
Missing single quote. Fixes #627.
svn path=/trunk/; revision=5513
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -4445,7 +4445,7 @@ then APACHE_VERSION="22" msg='not found, defaulting to 2.2' else - msg=`echo $APACHE_VERSION | sed 's=.=&.=` + msg=`echo $APACHE_VERSION | sed 's=.=&.='` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $msg" >&5 diff --git a/configure.ac b/configure.ac index 1c6bb435..31b61d09 100644 --- a/configure.ac +++ b/configure.ac @@ -282,7 +282,7 @@ then APACHE_VERSION="22" msg='not found, defaulting to 2.2' else - msg=`echo $APACHE_VERSION | sed 's=.=&.=` + msg=`echo $APACHE_VERSION | sed 's=.=&.='` fi AC_MSG_RESULT([$msg]) |