diff options
author | Gavin Romig-Koch <gavin@cygnus.com> | 1999-01-18 08:39:46 +0000 |
---|---|---|
committer | Gavin Romig-Koch <gavin@gcc.gnu.org> | 1999-01-18 08:39:46 +0000 |
commit | 6b106e7db721422dc10e5efed084ffb146a1257e (patch) | |
tree | 0d97583551a1b459770a01b1e6f9895870728fea /gcc | |
parent | 73333a8791299c17951b58c25ba4857059432059 (diff) | |
download | gcc-6b106e7db721422dc10e5efed084ffb146a1257e.zip gcc-6b106e7db721422dc10e5efed084ffb146a1257e.tar.gz gcc-6b106e7db721422dc10e5efed084ffb146a1257e.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8f1b424..b5e702a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 2a8ff3b..ac49d30 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -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) |