diff options
author | Kevin B Kenny <kennykb@acm.org> | 2007-03-23 18:45:39 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2007-03-23 18:45:39 (GMT) |
commit | e72387ba327faa197a65c9f58f06614ef4407226 (patch) | |
tree | 9b8f1a255c50bd0c417683663c2acd76063013dd /win/Makefile.in | |
parent | 9f06ebf0ccc28723d30db49bb6e25380753cd7ae (diff) | |
download | tcl-e72387ba327faa197a65c9f58f06614ef4407226.zip tcl-e72387ba327faa197a65c9f58f06614ef4407226.tar.gz tcl-e72387ba327faa197a65c9f58f06614ef4407226.tar.bz2 |
* win/Makefile.in: Added code to keep a Cygwin path name from
leaking into LIBRARY_DIR when doing 'make test' or 'make runtest'.
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index cbfe99e..ddcc921 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.114 2007/03/15 22:54:57 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.115 2007/03/23 18:45:40 kennykb Exp $ VERSION = @TCL_VERSION@ @@ -110,8 +110,8 @@ ROOT_DIR_NATIVE = $(shell $(CYGPATH) '$(ROOT_DIR)' | sed 's!\\!/!g') # Fully qualify library path so that `make test` # does not depend on the current directory. -LIBRARY_DIR = $(shell cd '$(ROOT_DIR_NATIVE)/library' ; pwd) - +LIBRARY_DIR1 = $(shell cd '$(ROOT_DIR_NATIVE)/library' ; pwd) +LIBRARY_DIR = $(shell $(CYGPATH) '$(LIBRARY_DIR1)' | sed 's!\\!/!g') DLLSUFFIX = @DLLSUFFIX@ LIBSUFFIX = @LIBSUFFIX@ EXESUFFIX = @EXESUFFIX@ |