aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure.in
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-01-07 15:17:01 +0000
committerAndrew Cagney <cagney@redhat.com>2005-01-07 15:17:01 +0000
commit3ace7edba44f19d891fb88168326d5d2954c6896 (patch)
tree49f6f4b6516c772fe7a237272967f6146cb13a97 /gdb/configure.in
parent6f79b21913185d4d44a805bdd03922fb7851eec7 (diff)
downloadgdb-3ace7edba44f19d891fb88168326d5d2954c6896.zip
gdb-3ace7edba44f19d891fb88168326d5d2954c6896.tar.gz
gdb-3ace7edba44f19d891fb88168326d5d2954c6896.tar.bz2
Index: ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org> * configure.in: Replace configdirs with multiple references to AC_CONFIG_SUBDIRS. * configure: Re-generate. Index: doc/ChangeLog 2005-01-07 Andrew Cagney <cagney@gnu.org> * configure.in: Replace configdirs with multiple references to AC_CONFIG_SUBDIRS. * configure: Re-generate.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r--gdb/configure.in9
1 files changed, 3 insertions, 6 deletions
diff --git a/gdb/configure.in b/gdb/configure.in
index d86f7f3..4792a48 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -118,7 +118,6 @@ AC_DEFINE_DIR(DEBUGDIR, debugdir,
#AC_DEFINE_UNQUOTED(DEBUGDIR, "$debugdir"),
AC_CONFIG_SUBDIRS(doc testsuite)
-configdirs=
. $srcdir/configure.host
@@ -1328,7 +1327,7 @@ if test "${enable_gdbtk}" = "yes"; then
fi
fi
- configdirs="${configdirs} gdbtk"
+ AC_CONFIG_SUBDIRS(gdbtk)
fi
AC_SUBST(X_CFLAGS)
@@ -1475,22 +1474,20 @@ AC_ARG_ENABLE(multi-ice,
*) AC_MSG_ERROR([bad value $enableval for --enable-multi-ice]) ;;
esac])
if test "x$enable_multi_ice" = xyes; then
- configdirs="$configdirs multi-ice"
+ AC_CONFIG_SUBDIRS(multi-ice)
fi
# We only build gdbserver automatically if host and target are the same.
if test "x$target" = "x$host"; then
AC_MSG_CHECKING(whether gdbserver is supported on this host)
if test "x$build_gdbserver" = xyes; then
- configdirs="$configdirs gdbserver"
AC_MSG_RESULT(yes)
+ AC_CONFIG_SUBDIRS(gdbserver)
else
AC_MSG_RESULT(no)
fi
fi
-AC_CONFIG_SUBDIRS($configdirs)
-
# If hostfile (XM_FILE) and/or targetfile (DEPRECATED_TM_FILE) and/or
# nativefile (NAT_FILE) is not set in config/*/*.m[ht] files, we link
# to an empty version.