]> gcc.gnu.org Git - gcc.git/commitdiff
Makefile.in (EXPECT): Look for "expect" in the correct place.
authorGavin Koch <gavin@cygnus.com>
Thu, 8 Oct 1998 23:13:20 +0000 (23:13 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 8 Oct 1998 23:13:20 +0000 (17:13 -0600)
       * Makefile.in (EXPECT) : Look for "expect" in the correct
        place.

From-SVN: r22943

libio/testsuite/ChangeLog
libio/testsuite/Makefile.in

index bd3f28872051cd075f2f1707ac6f18cd6c3d02c0..b9b54ed0bcb6f0a7e23a41cb0b7f70ae370ff20e 100644 (file)
@@ -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
index 75465243d4ad064c2cee0e6cc092899b2ca55a19..6258ce7c40ab9197857745c585bcc5b1af86ea80 100644 (file)
@@ -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) 
This page took 0.065577 seconds and 5 git commands to generate.