diff options
author | Nicholas Duffek <nsd@redhat.com> | 2000-11-17 16:37:48 +0000 |
---|---|---|
committer | Nicholas Duffek <nsd@redhat.com> | 2000-11-17 16:37:48 +0000 |
commit | 930764990dffdc53fe322f7db4ac952fd5d0446f (patch) | |
tree | 05b2ea868dcdf63197005d536e640c6c7539b49a /gdb/testsuite/Makefile.in | |
parent | 30e87cd37230c673d7c3d675b6b278485ca2f225 (diff) | |
download | gdb-930764990dffdc53fe322f7db4ac952fd5d0446f.zip gdb-930764990dffdc53fe322f7db4ac952fd5d0446f.tar.gz gdb-930764990dffdc53fe322f7db4ac952fd5d0446f.tar.bz2 |
* configure.in: Add AC_EXEEXT.
* configure: Regenerate.
* Makefile.in (just-check): Export EXEEXT.
* lib/gdb.exp ($EXEEXT): Import from environment.
* gdb.base/maint.exp: Expect $EXEEXT in executable name. Don't
expect "maint dump-me" on Cygwin.
* gdb.base/reread.exp ($binfile, $binfile1, $binfile2): Append
$EXEEXT.
Diffstat (limited to 'gdb/testsuite/Makefile.in')
-rw-r--r-- | gdb/testsuite/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in index c3b94f7..fe7891c 100644 --- a/gdb/testsuite/Makefile.in +++ b/gdb/testsuite/Makefile.in @@ -31,6 +31,7 @@ target_canonical = @target@ target_cpu = @gdb_target_cpu@ SHELL = @SHELL@ +EXEEXT = @EXEEXT@ SUBDIRS = @subdirs@ RPATH_ENVVAR = @RPATH_ENVVAR@ @@ -125,6 +126,7 @@ just-check: rootme=`pwd`; export rootme; \ srcdir=${srcdir} ; export srcdir ; \ EXPECT=${EXPECT} ; export EXPECT ; \ + EXEEXT=${EXEEXT} ; export EXEEXT ; \ $(RPATH_ENVVAR)=$$rootme/../../expect:$$rootme/../../libstdc++:$$rootme/../../tk/unix:$$rootme/../../tcl/unix:$$rootme/../../bfd:$$rootme/../../opcodes:$$$(RPATH_ENVVAR); \ export $(RPATH_ENVVAR); \ if [ -f $${rootme}/../../expect/expect ] ; then \ |