diff options
author | Theodore Tso <tytso@mit.edu> | 1995-04-18 21:45:50 +0000 |
---|---|---|
committer | Theodore Tso <tytso@mit.edu> | 1995-04-18 21:45:50 +0000 |
commit | 075e6738ed2932a752123e77e8ea3b80761092c4 (patch) | |
tree | 6eab231983a4b37c6dcc4d7a7713b74952bc58d9 | |
parent | 6406aceb2176544a13d68726bded5b74b78e8786 (diff) | |
download | krb5-075e6738ed2932a752123e77e8ea3b80761092c4.tar.gz krb5-075e6738ed2932a752123e77e8ea3b80761092c4.tar.xz krb5-075e6738ed2932a752123e77e8ea3b80761092c4.zip |
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
-rw-r--r-- | src/ChangeLog | 7 | ||||
-rw-r--r-- | src/aclocal.m4 | 2 |
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 |