diff options
author | Mark Kettenis <kettenis@gnu.org> | 2003-01-04 15:37:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2003-01-04 15:37:40 +0000 |
commit | dc62bfc2fcfef98a6bdae97a354f38c825ed4766 (patch) | |
tree | 49a1579dd09d55e01f9538c9db604b6e7bf3e03a /gdb/testsuite/gdb.threads/print-threads.exp | |
parent | c8b8a898312e1f6781b35ab18d93c856e9e876bd (diff) | |
download | binutils-dc62bfc2fcfef98a6bdae97a354f38c825ed4766.zip binutils-dc62bfc2fcfef98a6bdae97a354f38c825ed4766.tar.gz binutils-dc62bfc2fcfef98a6bdae97a354f38c825ed4766.tar.bz2 |
* configure.in: Call AC_CONFIG_HEADER. Don't call
AC_CONFIG_SUBDIRS on gdb.arch, gdb.asm, gdb.base gdb.c++ gdb.java,
gdb.disasm, gdb.mi, gdb.threads and gdb.trace. Call
AC_CHECK_HEADERS on pthread.h. Put Makefiles in the
aforementioned directories in the AC_OUPUT call.
* config.hin: New file.
* gdb.mi/gdb669.exp, gdb.mi/mi-pthreads.exp,
gdb.mi/mi1-pthreads.exp, gdb.threads/gcore-thread.exp,
gdb.threads/killed.exp, gdb.threads/print-threads.exp,
gdb.threads/pthreads.exp, gdb.threads/schedlock.exp: Make sure we
pass -I$objdir instead of -I$objdir/$subdir in compilation.
* gdb.arch/configure.in, gdb.arch/configure, gdb.asm/configure.in,
gdb.asm/configure, gdb.base/configure.in, gdb.base/configure,
gdb.c++/configure.in, gdb.c++/configure, gdb.disasm/configure.in,
gdb.disasm/configure, gdb.java/configure.in, gdb.java/configure,
gdb.mi/configure.in, gdb.mi/configure, gdb.mi/config.in,
gdb.threads/configure.in, gdb.threads/configure,
gdb.threads/config.in, gdb.trace/configure.in,
gdb.trace/configure: Removed.
Diffstat (limited to 'gdb/testsuite/gdb.threads/print-threads.exp')
-rw-r--r-- | gdb/testsuite/gdb.threads/print-threads.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.threads/print-threads.exp b/gdb/testsuite/gdb.threads/print-threads.exp index 09c3f8a..7bbc5aa 100644 --- a/gdb/testsuite/gdb.threads/print-threads.exp +++ b/gdb/testsuite/gdb.threads/print-threads.exp @@ -1,4 +1,4 @@ -# Copyright (C) 1996, 1997, 2002 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 2002, 2003 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -50,7 +50,7 @@ if [istarget "*-*-linux*"] then { set why_msg "unrecognized error" foreach lib $possible_libs { set options "debug" - lappend options "incdir=${objdir}/${subdir}" + lappend options "incdir=${objdir}" lappend options "libs=$lib" set ccout [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable $options] switch -regexp -- $ccout { |