diff options
author | Christopher Faylor <me@cgf.cx> | 2003-01-22 03:58:28 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-01-22 03:58:28 +0000 |
commit | 13afd798c32c94b45f06603bb420bcb1823c5c96 (patch) | |
tree | c62ab772602bd0a7e214051d98bebc276e1afb40 /winsup/testsuite | |
parent | 5cd5638f57426f184f18358c261f8b80d49e8e5c (diff) | |
download | newlib-13afd798c32c94b45f06603bb420bcb1823c5c96.zip newlib-13afd798c32c94b45f06603bb420bcb1823c5c96.tar.gz newlib-13afd798c32c94b45f06603bb420bcb1823c5c96.tar.bz2 |
* Makefile.in: Find tcl library in the right place.
Diffstat (limited to 'winsup/testsuite')
-rw-r--r-- | winsup/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/testsuite/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/testsuite/ChangeLog b/winsup/testsuite/ChangeLog index 4e33524..d16f1f4 100644 --- a/winsup/testsuite/ChangeLog +++ b/winsup/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-01-21 Christopher Faylor <cgf@redhat.com> + + * Makefile.in: Find tcl library in the right place. + 2003-01-21 Thomas Pfaff <tpfaff@gmx.net> * winsup.api/pthread/cancel9.c: Make child pid static global. diff --git a/winsup/testsuite/Makefile.in b/winsup/testsuite/Makefile.in index 1658c36..b74f4c0 100644 --- a/winsup/testsuite/Makefile.in +++ b/winsup/testsuite/Makefile.in @@ -176,7 +176,7 @@ check: $(TESTSUP_LIB_NAME) $(RUNTIME) testsuite/site.exp cd testsuite; \ EXPECT=${EXPECT} ; export EXPECT ; \ if [ -f $(bupdir2)/expect/expect ] ; then \ - TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \ + TCL_LIBRARY=`cd .. ; cd ${srcdir}/../../tcl/library ; pwd` ; \ export TCL_LIBRARY ; fi ; \ PATH=$(bupdir)/cygwin:$${PATH} ;\ $(RUNTEST) --tool winsup $(RUNTESTFLAGS) |