aboutsummaryrefslogtreecommitdiff
path: root/libio/testsuite
diff options
context:
space:
mode:
authorGavin Koch <gavin@cygnus.com>1998-10-08 23:13:20 +0000
committerJeff Law <law@gcc.gnu.org>1998-10-08 17:13:20 -0600
commitd9fc1697efe82a98dfdac45f65e1ed485d20ab28 (patch)
tree31b843bffc871b8796bfec91d3c36fbd500e2002 /libio/testsuite
parent36af8b651375dd07b489384f6f6847c80c2531ce (diff)
downloadgcc-d9fc1697efe82a98dfdac45f65e1ed485d20ab28.zip
gcc-d9fc1697efe82a98dfdac45f65e1ed485d20ab28.tar.gz
gcc-d9fc1697efe82a98dfdac45f65e1ed485d20ab28.tar.bz2
Makefile.in (EXPECT): Look for "expect" in the correct place.
* Makefile.in (EXPECT) : Look for "expect" in the correct place. From-SVN: r22943
Diffstat (limited to 'libio/testsuite')
-rw-r--r--libio/testsuite/ChangeLog5
-rw-r--r--libio/testsuite/Makefile.in6
2 files changed, 8 insertions, 3 deletions
diff --git a/libio/testsuite/ChangeLog b/libio/testsuite/ChangeLog
index bd3f288..b9b54ed 100644
--- a/libio/testsuite/ChangeLog
+++ b/libio/testsuite/ChangeLog
@@ -3,6 +3,11 @@ Sat Jun 27 23:59:35 1998 Carlo Wood <carlo@runaway.xs4all.nl>
* lib/libio.exp (test_libio): Reset ld_library_path before appending
the same path(s) again.
+Tue Jun 9 11:23:42 1998 Gavin Koch <gavin@cygnus.com>
+
+ * Makefile.in (EXPECT) : Look for "expect" in the correct
+ place.
+
Sat Sep 6 00:49:31 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
* lib/libio.exp (test_libio): Lose -L.. before -lio, may as well
diff --git a/libio/testsuite/Makefile.in b/libio/testsuite/Makefile.in
index 7546524..6258ce7 100644
--- a/libio/testsuite/Makefile.in
+++ b/libio/testsuite/Makefile.in
@@ -23,8 +23,8 @@ CXXFLAGS = -g
CC = gcc
CXX = gcc
-EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \
- echo $${rootme}/../../expect/expect ; \
+EXPECT = `if [ -f $${rootme}/../../../expect/expect ] ; then \
+ echo $${rootme}/../../../expect/expect ; \
else echo expect ; fi`
RUNTEST = $(RUNTEST_FOR_TARGET)
@@ -83,7 +83,7 @@ just-check: site.exp
rootme=`pwd`; export rootme; \
srcdir=${srcdir} ; export srcdir ; \
EXPECT=${EXPECT} ; export EXPECT ; \
- if [ -f $${rootme}/../../expect/expect ] ; then \
+ if [ -f $${rootme}/../../../expect/expect ] ; then \
TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
export TCL_LIBRARY ; fi ; \
$(RUNTEST) $(RUNTESTFLAGS)