From e89537ec6a010b9f8a018be0a8086621a57c99f1 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Tue, 1 Dec 1998 20:32:34 +0000 Subject: [PATCH] Checked in wrong version of post.in previously. Make sure we check Since if MY_SUBDIRS is defined, it overrides SUBDIRS, we should check do_subdirs after it has been properly assigned. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11048 dc483132-0cff-0310-8789-dd5450dbe970 --- src/config/post.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/post.in b/src/config/post.in index 4cc76a724..4e2fbbc37 100644 --- a/src/config/post.in +++ b/src/config/post.in @@ -55,12 +55,12 @@ $(srcdir)/$(thisconfigdir)/configure: $(srcdir)/$(thisconfigdir)/configure.in \ all-recurse clean-recurse distclean-recurse install-recurse check-recurse Makefiles-recurse: @case "`echo 'x$(MFLAGS)'|sed -e 's/^x//' -e 's/ --.*$$//'`" \ in *[ik]*) e=:;; *) e="exit 1";; esac; \ - if test -n "$(SUBDIRS)" && test -z "$(NORECURSE)"; then \ if test -z "$(MY_SUBDIRS)" ; then \ do_subdirs="$(SUBDIRS)" ; \ else \ do_subdirs="$(MY_SUBDIRS)" ; \ fi; \ + if test -n "$$do_subdirs" && test -z "$(NORECURSE)"; then \ for i in $$do_subdirs ; do \ if test -d $$i ; then \ case $$i in .);; *) \ -- 2.26.2