summaryrefslogtreecommitdiff
path: root/server/Makefile.in
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2006-02-04 02:41:02 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2006-02-04 02:41:02 +0000
commitd3e8acd0a5cbc441b38306bb4d14daa7c07ef837 (patch)
treeea9f5d40177e5ab1b2d86c04d4200b7fc42b2e12 /server/Makefile.in
parentde63600765017efa172cfde75562bffaf91c5df4 (diff)
downloadhttpd-d3e8acd0a5cbc441b38306bb4d14daa7c07ef837.tar.gz
Solaris build proposal; don't fail on missing .h files within
a VPATH build, and don't test trees with -d (simply -f the expected files) in case a tree such as srclib/apr is actually a symlink rather than a true directory in ./buildconf. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@374821 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/Makefile.in')
-rw-r--r--server/Makefile.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/server/Makefile.in b/server/Makefile.in
index a4da96f548..36c72f9723 100644
--- a/server/Makefile.in
+++ b/server/Makefile.in
@@ -59,8 +59,7 @@ export_files:
ls $$dir/*.h >> $$tmp; \
done; \
for dir in $(EXPORT_DIRS_APR); do \
- ls $$dir/ap[ru].h >> $$tmp; \
- ls $$dir/ap[ru]_*.h >> $$tmp; \
+ (ls $$dir/ap[ru].h $$dir/ap[ru]_*.h >> $$tmp 2>/dev/null); \
done; \
sort -u $$tmp > $@; \
rm -f $$tmp