From 3151441166a62084e4d9c1a15b6f3aa133efe129 Mon Sep 17 00:00:00 2001 From: mdejong Date: Thu, 15 Mar 2007 22:54:57 +0000 Subject: * win/Makefile.in: Fully qualify LIBRARY_DIR so that `make test` does not depend on working dir. --- ChangeLog | 5 +++++ win/Makefile.in | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 73658e0..3ccac78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2007-03-15 Mo DeJong + * win/Makefile.in: Fully qualify LIBRARY_DIR so + that `make test` does not depend on working dir. + +2007-03-15 Mo DeJong + * tests/parse.test: Add two backslash newline parse tests. 2007-03-12 Don Porter 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@ -- cgit v0.12