summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/aclocal.m42
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3fdc08499..51cb18ab8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
+Fri Apr 14 21:21:28 1995 Theodore Y. Ts'o <tytso@lurch.mit.edu>
+
+ * aclocal.m4 (_MAKE_SUBDIRS): If there is an error while making in
+ a subdirectory, abort the make in the parent directory.
+ This makes it more obvious when we have a problem in the
+ tree.
+
Fri Apr 14 08:23:52 1995 Theodore Y. Ts'o (tytso@dcl)
* aclocal.m4 (MAKE_SUBDIRS, _MAKE_SUBDIRS): Creatre new macro
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index e36eef4ec..70f4bb5b7 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -102,7 +102,7 @@ $2::<<<
do \
(cd $$i ; echo>>> $1 <<<"in $(CURRENT_DIR)$$i..."; \
$(MAKE) $(MFLAGS) CC="$(CC)" CCOPTS="$(CCOPTS)" \
- CURRENT_DIR=$(CURRENT_DIR)$$i/ >>>$3<<<); \
+ CURRENT_DIR=$(CURRENT_DIR)$$i/ >>>$3<<<) || exit 1; \
done>>>
changequote([,])dnl
AC_DIVERT_POP()dnl