From: Tom Yu Date: Tue, 29 Aug 2000 20:35:27 +0000 (+0000) Subject: * post.in: Test for existing Makefile in directory before X-Git-Tag: krb5-1.3-alpha1~1906 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0f0d1fa2e56c678b5a185f173a3e2fb3c72c7eef;p=krb5.git * post.in: Test for existing Makefile in directory before recursing into it. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12634 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/config/ChangeLog b/src/config/ChangeLog index ce9d33c8d..05b37a23a 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,3 +1,8 @@ +2000-08-29 Tom Yu + + * post.in: Test for existing Makefile in directory before + recursing into it. + 2000-08-23 Ken Raeburn * libobj.in (clean-libobjs): Combine "rm" commands into one. diff --git a/src/config/post.in b/src/config/post.in index 79b734bae..c4a618f8c 100644 --- a/src/config/post.in +++ b/src/config/post.in @@ -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..."; \