From 79ef433ec95821e44fcd67f61a190a79f1d3cd65 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Tue, 14 Feb 2012 07:16:45 +0000 Subject: [PATCH] Fix shell syntax error introduced in r1243670. Backport of r1243797 and r1243799 from trunk. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1243800 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 9f960963ae..e2317a1a3b 100644 --- a/configure.in +++ b/configure.in @@ -87,7 +87,7 @@ APACHE_HELP_STRING(--with-included-apr,Use bundled copies of APR/APR-Util)) if test "x$with_included_apr" = "xyes"; then apr_found=reconfig - if test ! -d srclib/apr && ! -d $srcdir/srclib/apr; then + if test ! -d srclib/apr && test ! -d $srcdir/srclib/apr; then AC_MSG_ERROR([Bundled APR requested but not found at ./srclib/. Download and unpack the corresponding apr and apr-util packages to ./srclib/.]) fi else @@ -136,7 +136,7 @@ if test "x${apr_major_version}" = "x2"; then apu_found=obsolete elif test "x$with_included_apr" = "xyes"; then apu_found=reconfig - if test ! -d srclib/apr-util && ! -d $srcdir/srclib/apr-util; then + if test ! -d srclib/apr-util && test ! -d $srcdir/srclib/apr-util; then AC_MSG_ERROR([Bundled APR-Util requested but not found at ./srclib/. Download and unpack the corresponding apr and apr-util packages to ./srclib/.]) fi else -- 2.50.1