From: Tom Yu Date: Mon, 3 Jul 1995 00:13:32 +0000 (+0000) Subject: * aclocal.m4 (_MAKE_SUBDIRS): Fixed so that error propogates X-Git-Tag: krb5-1.0-beta6~1594 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=998ecf78d782c78c48b9ac2514d6863c2db3211f;p=krb5.git * aclocal.m4 (_MAKE_SUBDIRS): Fixed so that error propogates upward if -[ik] not specified. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6222 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/ChangeLog b/src/ChangeLog index 5dd55e4ce..3598cc829 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,4 +1,6 @@ Sun Jul 2 04:40:50 1995 Tom Yu + * aclocal.m4 (_MAKE_SUBDIRS): Fixed so that error propogates + upward if -[ik] not specified. * aclocal.m4 (SubdirLibRule): don't recreate DONE if list of objs is null to avoid re-making lotsa stuff. diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 24f16a08d..eeba2bc6f 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -86,7 +86,7 @@ changequote(<<<,>>>)dnl $2::<<< @case "`echo '$(MAKEFLAGS)'|sed -e 's/ --.*$$//'`" in \ - *[ik]*) e=:;; *) e=break;; esac; \ + *[ik]*) e=:;; *) e="exit 1";; esac; \ for i in $(SUBDIRS) ; do \ if (cd $$i ; echo>>> $1 <<<"in $(CURRENT_DIR)$$i..."; \ $(MAKE) CC="$(CC)" CCOPTS="$(CCOPTS)" \