Skip to content

Commit 1ba5f0b

Browse files
committed
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
1 parent ce5fd44 commit 1ba5f0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/filters/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ AC_DEFUN(FIND_LIBXML2, [
9999
AC_MSG_CHECKING(for libxml2)
100100
xml2_path=""
101101
for x in ${test_paths}; do
102-
if test -e "${x}/libxml/parser.h"; then
102+
if test -f "${x}/libxml/parser.h"; then
103103
xml2_path="${x}"
104104
break
105105
fi

0 commit comments

Comments
 (0)