]> granicus.if.org Git - apache/commitdiff
Take a stab at fixing the brokenness in our tree (grr!).
authorJustin Erenkrantz <jerenkrantz@apache.org>
Wed, 11 Dec 2002 21:09:16 +0000 (21:09 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Wed, 11 Dec 2002 21:09:16 +0000 (21:09 +0000)
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

index 6d842c51d0bf52793d97609fa6eff4c3ec52a46d..7ac9b848952b9bb416f707aef90ef4bebdb542b7 100644 (file)
@@ -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