From 24e4cc78cf93446ff3e81c7b07270b3e24f4b11c Mon Sep 17 00:00:00 2001 From: Justin Erenkrantz Date: Wed, 11 Dec 2002 21:09:16 +0000 Subject: [PATCH] Take a stab at fixing the brokenness in our tree (grr!). ls -1 is bound to be more portable than find -maxdepth, but I suspect it may not be as portable as it really should. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97864 13f79535-47bb-0310-9956-ffa450edef68 --- server/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Makefile.in b/server/Makefile.in index 6d842c51d0..7ac9b84895 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -47,7 +47,7 @@ export_files: tmp=export_files_unsorted.txt; \ rm -f $$tmp && touch $$tmp; \ for dir in $(EXPORT_DIRS); do \ - find $$dir -maxdepth 1 -type f -name '*.h' >> $$tmp; \ + ls -1 $$dir/*.h >> $$tmp; \ done; \ sort -u $$tmp > $@; \ rm -f $$tmp -- 2.40.0