diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/Makefile.in | 6 |
2 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2007-03-15 Mo DeJong <mdejong@users.sourceforge.net> + * win/Makefile.in: Fully qualify LIBRARY_DIR so + that `make test` does not depend on working dir. + +2007-03-15 Mo DeJong <mdejong@users.sourceforge.net> + * tests/parse.test: Add two backslash newline parse tests. 2007-03-12 Don Porter <dgp@users.sourceforge.net> diff --git a/win/Makefile.in b/win/Makefile.in index 94144dd..cbfe99e 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.113 2007/03/09 20:04:39 andreas_kupries Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.114 2007/03/15 22:54:57 mdejong Exp $ VERSION = @TCL_VERSION@ @@ -108,7 +108,9 @@ TOMMATH_DIR_NATIVE = $(shell $(CYGPATH) '$(TOMMATH_DIR)' | sed 's!\\!/!g') WIN_DIR_NATIVE = $(shell $(CYGPATH) '$(WIN_DIR)' | sed 's!\\!/!g') ROOT_DIR_NATIVE = $(shell $(CYGPATH) '$(ROOT_DIR)' | sed 's!\\!/!g') -LIBRARY_DIR = $(ROOT_DIR_NATIVE)/library +# Fully qualify library path so that `make test` +# does not depend on the current directory. +LIBRARY_DIR = $(shell cd '$(ROOT_DIR_NATIVE)/library' ; pwd) DLLSUFFIX = @DLLSUFFIX@ LIBSUFFIX = @LIBSUFFIX@ |