diff options
| author | Tom Yu <tlyu@mit.edu> | 2000-08-29 20:35:27 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 2000-08-29 20:35:27 +0000 |
| commit | 0f0d1fa2e56c678b5a185f173a3e2fb3c72c7eef (patch) | |
| tree | 9e283491624b5274cbdda23b8ff2ce1530a87f49 /src/config | |
| parent | e9ed6761b87c2b8fe1e86944f188037fc404d568 (diff) | |
* 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
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/ChangeLog | 5 | ||||
| -rw-r--r-- | src/config/post.in | 2 |
2 files changed, 6 insertions, 1 deletions
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 <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. 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..."; \ |
