]> granicus.if.org Git - apache/commitdiff
Fix shell syntax error introduced in r1243670.
authorRainer Jung <rjung@apache.org>
Tue, 14 Feb 2012 07:16:45 +0000 (07:16 +0000)
committerRainer Jung <rjung@apache.org>
Tue, 14 Feb 2012 07:16:45 +0000 (07:16 +0000)
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

index 9f960963aea8e7e78d1b76303f5af46d035a3e0b..e2317a1a3bf9ab78069d70222a11b516543468fe 100644 (file)
@@ -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