Makefile.in (TCL_LIBRARY): Use 'cd' to find the library directory logically rather than physically.
* Makefile.in (TCL_LIBRARY): Use 'cd' to find the library directory logically rather than physically. From-SVN: r24742
This commit is contained in:
parent
73333a8791
commit
6b106e7db7
@ -1,3 +1,8 @@
|
||||
Mon Jan 18 11:35:49 1999 Gavin Romig-Koch <gavin@cygnus.com>
|
||||
|
||||
* Makefile.in (TCL_LIBRARY): Use 'cd' to find the library
|
||||
directory logically rather than physically.
|
||||
|
||||
Mon Jan 18 09:05:37 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* loop.c (insert_bct): Hide the definition of variables
|
||||
|
@ -2677,7 +2677,7 @@ check-g++: testsuite/site.exp
|
||||
cd testsuite; \
|
||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||
TCL_LIBRARY=$${srcdir}/../tcl/library ; \
|
||||
TCL_LIBRARY=`cd ${srcdir}/../tcl/library ; pwd` ; \
|
||||
export TCL_LIBRARY ; fi ; \
|
||||
$(RUNTEST) --tool g++ $(RUNTESTFLAGS)
|
||||
|
||||
@ -2687,7 +2687,7 @@ check-gcc: testsuite/site.exp
|
||||
cd testsuite; \
|
||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||
TCL_LIBRARY=$${srcdir}/../tcl/library ; \
|
||||
TCL_LIBRARY=`cd ${srcdir}/../tcl/library ; pwd` ; \
|
||||
export TCL_LIBRARY ; fi ; \
|
||||
$(RUNTEST) --tool gcc $(RUNTESTFLAGS)
|
||||
|
||||
@ -2697,7 +2697,7 @@ check-g77: testsuite/site.exp
|
||||
cd testsuite; \
|
||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||
TCL_LIBRARY=$${srcdir}/../tcl/library ; \
|
||||
TCL_LIBRARY=`cd ${srcdir}/../tcl/library ; pwd` ; \
|
||||
export TCL_LIBRARY ; fi ; \
|
||||
$(RUNTEST) --tool g77 $(RUNTESTFLAGS)
|
||||
|
||||
@ -2707,7 +2707,7 @@ check-objc: testsuite/site.exp
|
||||
cd testsuite; \
|
||||
EXPECT=${EXPECT} ; export EXPECT ; \
|
||||
if [ -f $${rootme}/../expect/expect ] ; then \
|
||||
TCL_LIBRARY=$${srcdir}/../tcl/library ; \
|
||||
TCL_LIBRARY=`cd ${srcdir}/../tcl/library ; pwd` ; \
|
||||
export TCL_LIBRARY ; fi ; \
|
||||
$(RUNTEST) --tool objc $(RUNTESTFLAGS)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user