diff options
author | Keith Seitz <keiths@redhat.com> | 2002-08-14 17:43:16 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2002-08-14 17:43:16 +0000 |
commit | ffc6a242e05e29ecf8540505b2cf55e4efb79b4f (patch) | |
tree | 12b5abc84c9b910cba161759945e33e15b51efc0 /gdb/configure.in | |
parent | e8d5d1796f1991d49a3232a0de1725a5502de24f (diff) | |
download | gdb-ffc6a242e05e29ecf8540505b2cf55e4efb79b4f.zip gdb-ffc6a242e05e29ecf8540505b2cf55e4efb79b4f.tar.gz gdb-ffc6a242e05e29ecf8540505b2cf55e4efb79b4f.tar.bz2 |
* configure.in: Move SUBDIRS to near top of the file so that
--enable options may add things to it.
If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
* configure: Regenerate.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 07871be..edc72c3 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -52,6 +52,7 @@ CONFIG_CLEAN= CONFIG_INSTALL= CONFIG_UNINSTALL= +SUBDIRS="doc testsuite nlm" configdirs="doc testsuite" AC_ARG_ENABLE(multi-ice, @@ -1087,6 +1088,9 @@ if test "${enable_gdbtk}" = "yes"; then fi fi fi + + SUBDIRS="${SUBDIRS} gdbtk" + configdirs="${configdirs} gdbtk" fi AC_SUBST(X_CFLAGS) @@ -1293,7 +1297,6 @@ case "${GDB_MULTI_ARCH}" in *) AC_MSG_ERROR("GDB: Unknown GDB_MULTI_ARCH value ${GDB_MULTI_ARCH}");; esac -SUBDIRS="doc testsuite nlm" if test "${enable_multi_ice}" = "yes"; then SUBDIRS="${SUBDIRS} multi-ice" fi |