diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-07 15:17:01 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-07 15:17:01 +0000 |
commit | 3ace7edba44f19d891fb88168326d5d2954c6896 (patch) | |
tree | 49f6f4b6516c772fe7a237272967f6146cb13a97 /gdb/testsuite/configure.in | |
parent | 6f79b21913185d4d44a805bdd03922fb7851eec7 (diff) | |
download | gdb-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/testsuite/configure.in')
-rw-r--r-- | gdb/testsuite/configure.in | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gdb/testsuite/configure.in b/gdb/testsuite/configure.in index 02c0a04..f654de5 100644 --- a/gdb/testsuite/configure.in +++ b/gdb/testsuite/configure.in @@ -32,13 +32,10 @@ AC_CANONICAL_BUILD AC_CANONICAL_HOST AC_CANONICAL_TARGET -# Directories that need to be configured in all configurations. -configdirs= - # Add HP-specific tests when appropriate. case $target in hppa*-*-hpux*) - configdirs="$configdirs gdb.hp" ;; + AC_CONFIG_SUBDIRS(gdb.hp) ;; esac # With stabs. @@ -63,7 +60,7 @@ esac]) # Add stabs tests when appropriate. if test $with_stabs = yes; then - configdirs="$configdirs gdb.stabs" + AC_CONFIG_SUBDIRS(gdb.stabs) fi # Enable gdbtk. @@ -82,7 +79,7 @@ esac # Add gdbtk tests when appropriate. if test $enable_gdbtk = yes; then - configdirs="$configdirs gdb.gdbtk" + AC_CONFIG_SUBDIRS(gdb.gdbtk) fi # Enable shared libraries. @@ -117,7 +114,6 @@ AC_CHECK_HEADERS(pthread.h) AC_EXEEXT -AC_CONFIG_SUBDIRS($configdirs) AC_OUTPUT([Makefile \ gdb.ada/Makefile gdb.ada/gnat_ada.gpr:gdb.ada/gnat_ada.gin \ gdb.arch/Makefile gdb.asm/Makefile gdb.base/Makefile \ |