]> granicus.if.org Git - apache/commitdiff
Solaris doesn't support "test -e" in combination
authorRainer Jung <rjung@apache.org>
Mon, 7 Nov 2011 23:57:06 +0000 (23:57 +0000)
committerRainer Jung <rjung@apache.org>
Mon, 7 Nov 2011 23:57:06 +0000 (23:57 +0000)
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

index 0a1e62a9131a87ce5339683fc2bfbc11a9253142..2bea5689e396d6f80e3c8a82b1dd2ca52912a6cd 100644 (file)
@@ -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