* post.in: Test for existing Makefile in directory before
authorTom Yu <tlyu@mit.edu>
Tue, 29 Aug 2000 20:35:27 +0000 (20:35 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 29 Aug 2000 20:35:27 +0000 (20:35 +0000)
recursing into it.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12634 dc483132-0cff-0310-8789-dd5450dbe970

src/config/ChangeLog
src/config/post.in

index ce9d33c8d1ba7bdb7beb7d5930b8f8597cb8ec89..05b37a23af6a87c80c3d7618db6aecdb7560ba6a 100644 (file)
@@ -1,3 +1,8 @@
+2000-08-29  Tom Yu  <tlyu@mit.edu>
+
+       * post.in: Test for existing Makefile in directory before
+       recursing into it.
+
 2000-08-23  Ken Raeburn  <raeburn@mit.edu>
 
        * libobj.in (clean-libobjs): Combine "rm" commands into one.
index 79b734baeb1bc5b87ae04c058e5d7d087aef9695..c4a618f8c839b3a41470d6cadca457677eb9ef6f 100644 (file)
@@ -63,7 +63,7 @@ all-recurse clean-recurse distclean-recurse install-recurse check-recurse Makefi
        status=0; \
        if test -n "$$do_subdirs" && test -z "$(NORECURSE)"; then \
        for i in $$do_subdirs ; do \
-               if test -d $$i ; then \
+               if test -d $$i && test -r $$i/Makefile ; then \
                case $$i in .);; *) \
                        target=`echo $@|sed s/-recurse//`; \
                        echo "making $$target in $(CURRENT_DIR)$$i..."; \