diff options
author | Jeff Trawick <trawick@apache.org> | 2001-04-19 21:02:54 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-04-19 21:02:54 +0200 |
commit | 5ca024c94dc3d8381828c2038a3942f9498abb33 (patch) | |
tree | 334507c65efe56ddf542f748f60dcc3472cbb2db /build | |
parent | Remove unused variable. (diff) | |
download | apache2-5ca024c94dc3d8381828c2038a3942f9498abb33.tar.xz apache2-5ca024c94dc3d8381828c2038a3942f9498abb33.zip |
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
Diffstat (limited to 'build')
-rw-r--r-- | build/rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ |