summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authormdejong <mdejong>2007-03-15 22:54:57 (GMT)
committermdejong <mdejong>2007-03-15 22:54:57 (GMT)
commit3151441166a62084e4d9c1a15b6f3aa133efe129 (patch)
tree14f663cc090a4b46064c98a606bb7bd043b9462a /win
parent629cc476cfb173e222a3baf4aa896ccdc59b9c78 (diff)
downloadtcl-3151441166a62084e4d9c1a15b6f3aa133efe129.zip
tcl-3151441166a62084e4d9c1a15b6f3aa133efe129.tar.gz
tcl-3151441166a62084e4d9c1a15b6f3aa133efe129.tar.bz2
* win/Makefile.in: Fully qualify LIBRARY_DIR so
that `make test` does not depend on working dir.
Diffstat (limited to 'win')
-rw-r--r--win/Makefile.in6
1 files changed, 4 insertions, 2 deletions
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@