diff options
author | Theodore Tso <tytso@mit.edu> | 1998-12-01 20:32:34 +0000 |
---|---|---|
committer | Theodore Tso <tytso@mit.edu> | 1998-12-01 20:32:34 +0000 |
commit | e89537ec6a010b9f8a018be0a8086621a57c99f1 (patch) | |
tree | d7ad5222479b95e5a82d57ac602633ac8a0d316c /src | |
parent | bd60aa4f23807e9e41cac0de5d61a26c28fe6e3d (diff) | |
download | krb5-e89537ec6a010b9f8a018be0a8086621a57c99f1.tar.gz krb5-e89537ec6a010b9f8a018be0a8086621a57c99f1.tar.xz krb5-e89537ec6a010b9f8a018be0a8086621a57c99f1.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/config/post.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/post.in b/src/config/post.in index 4cc76a7240..4e2fbbc373 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 .);; *) \ |