From 63a4102253e55604d89ccef0f0a2bc3fa1d9775d Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Mon, 7 Nov 2011 23:57:06 +0000 Subject: [PATCH] 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 --- modules/filters/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1