From: Jeff Trawick Date: Thu, 19 Apr 2001 19:02:54 +0000 (+0000) Subject: test -e isn't portable; use test -f instead X-Git-Tag: 2.0.18~196 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ca024c94dc3d8381828c2038a3942f9498abb33;p=apache test -e isn't portable; use test -f instead this gets DSO builds working on Solaris (dunno where else) again git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88897 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/rules.mk b/build/rules.mk index 46a6fda904..4c6df265ce 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -184,7 +184,7 @@ shared-modules-recursive: (cd $$i && $(MAKE) $$target) || exit 1; \ fi; \ done; \ - if test -e 'modules.mk'; then \ + if test -f 'modules.mk'; then \ if test -n '$(shared_targets)'; then \ echo "Building shared modules: $(shared_targets)"; \ if test -z '$(shared_targets)'; then ok=yes; fi; \