Commit 1ba5f0bc authored by Rainer Jung's avatar Rainer Jung
Browse files

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
parent ce5fd44b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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