From: Theodore Tso Date: Tue, 18 Apr 1995 21:45:50 +0000 (+0000) Subject: If there is an error while making in a subdirectory, abort the make in X-Git-Tag: krb5-1.0-beta5~373 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=075e6738ed2932a752123e77e8ea3b80761092c4;p=krb5.git 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. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5363 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 + + * 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