From: Rainer Jung Date: Mon, 7 Nov 2011 23:57:06 +0000 (+0000) Subject: Solaris doesn't support "test -e" in combination X-Git-Tag: 2.3.15~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63a4102253e55604d89ccef0f0a2bc3fa1d9775d;p=apache Solaris doesn't support "test -e" in combination with "sh". We use "-f" in all other places. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199021 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/config.m4 b/modules/filters/config.m4 index 0a1e62a913..2bea5689e3 100644 --- a/modules/filters/config.m4 +++ b/modules/filters/config.m4 @@ -99,7 +99,7 @@ AC_DEFUN(FIND_LIBXML2, [ AC_MSG_CHECKING(for libxml2) xml2_path="" for x in ${test_paths}; do - if test -e "${x}/libxml/parser.h"; then + if test -f "${x}/libxml/parser.h"; then xml2_path="${x}" break fi