mirror of git://gcc.gnu.org/git/gcc.git
Makefile.in (EXPECT): Look for "expect" in the correct place.
* Makefile.in (EXPECT) : Look for "expect" in the correct
place.
From-SVN: r22943
This commit is contained in:
parent
36af8b6513
commit
d9fc1697ef
|
|
@ -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
|
* lib/libio.exp (test_libio): Reset ld_library_path before appending
|
||||||
the same path(s) again.
|
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>
|
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
|
* lib/libio.exp (test_libio): Lose -L.. before -lio, may as well
|
||||||
|
|
|
||||||
|
|
@ -23,8 +23,8 @@ CXXFLAGS = -g
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CXX = gcc
|
CXX = gcc
|
||||||
|
|
||||||
EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \
|
EXPECT = `if [ -f $${rootme}/../../../expect/expect ] ; then \
|
||||||
echo $${rootme}/../../expect/expect ; \
|
echo $${rootme}/../../../expect/expect ; \
|
||||||
else echo expect ; fi`
|
else echo expect ; fi`
|
||||||
|
|
||||||
RUNTEST = $(RUNTEST_FOR_TARGET)
|
RUNTEST = $(RUNTEST_FOR_TARGET)
|
||||||
|
|
@ -83,7 +83,7 @@ just-check: site.exp
|
||||||
rootme=`pwd`; export rootme; \
|
rootme=`pwd`; export rootme; \
|
||||||
srcdir=${srcdir} ; export srcdir ; \
|
srcdir=${srcdir} ; export srcdir ; \
|
||||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||||
if [ -f $${rootme}/../../expect/expect ] ; then \
|
if [ -f $${rootme}/../../../expect/expect ] ; then \
|
||||||
TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
|
TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
|
||||||
export TCL_LIBRARY ; fi ; \
|
export TCL_LIBRARY ; fi ; \
|
||||||
$(RUNTEST) $(RUNTESTFLAGS)
|
$(RUNTEST) $(RUNTESTFLAGS)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue