summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config/ChangeLog5
-rw-r--r--src/config/post.in2
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..."; \