From: Theodore Tso Date: Tue, 1 Dec 1998 20:41:18 +0000 (+0000) Subject: Update the Changelog with a better documentation of the whole SUBDIRS, X-Git-Tag: krb5-1.1-beta1~468 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=63ba75c5ce159af40b2548aa1e9f48926792998d;p=krb5.git Update the Changelog with a better documentation of the whole SUBDIRS, LOCAL_SUBDIRS, and MY_SUBDIRS mess. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11049 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/config/ChangeLog b/src/config/ChangeLog index 3101ba08b..0fd5fa6d1 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -5,7 +5,28 @@ over. (This is needed so we can fold a directory's configure.in scripts into the parent's configure.in without having to move all of its siblings as well into - the parent directory's configure.in.) + the parent directory's configure.in. This is because if + the parent's configure.in file as a AC_CONFIG_DIRS macro, + it gets included into all the $(SUBDIRS) macro of *all* + of its generated makefiles, and this is wrong for all + but the Makefile.in of the parent directory. For example, + if the configure.in in src/appl contains + AC_CONFIG_DIRS(bsd telnet gssftp), and that configure + script also generates the Makefile.in for src/appl/sample, + then SUBDIRS will contain "bsd telnet gssftp" plus + whatever LOCAL_SUBDIRS is defined to contain. This + doesn't work. So instead of defining LOCAL_SUBDIRS, + the Makefile.in in src/appl/sample defines MY_SUBDIRS, + which completely overrides the SUBDIRS macro. + Eventually, we should replace all of the LOCAL_SUBDIRS + definitions in the Makefile.in's with MY_SUBDIRS, and + add MY_SUBDIRS definitions into all Makefile.in's that + don't currently have then, and depend on + AC_CONFIG_SUBDIRS to insert the right magic value into + SUBDIRS. At that point, we can get rid of the SUBDIR + definition in pre.in, and remove this test from + post.in which tests of MY_SUBDIRS and uses it in + preference to SUBDIRS, and simply always use MY_SUBDIRS.) 1998-05-27 Theodore Ts'o