summaryrefslogtreecommitdiffstats
path: root/win/Makefile.in
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2004-10-20 18:11:52 (GMT)
committerandreas_kupries <akupries@shaw.ca>2004-10-20 18:11:52 (GMT)
commit02b44df49ea3df0256e9e7b48d0f45f29840defe (patch)
tree65a82fe01e2c875623647854bfe5b661c2667303 /win/Makefile.in
parent23e6cb833078496ac9af54cba4a1b4d9aff3866b (diff)
downloadtcl-02b44df49ea3df0256e9e7b48d0f45f29840defe.zip
tcl-02b44df49ea3df0256e9e7b48d0f45f29840defe.tar.gz
tcl-02b44df49ea3df0256e9e7b48d0f45f29840defe.tar.bz2
* win/Makefile.in (install-msgs): Fixed a problem with the
* win/Makefile.in (install-tzdata): installation of timezone data and message catalogs. They used the installed tcl library directory, not the source library. Before it was installed. Switched to source lib dir. Thanks to Kevin for the help in figuring this out.
Diffstat (limited to 'win/Makefile.in')
-rw-r--r--win/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 3a8160a..b51f4b5 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.81 2004/09/27 14:31:21 kennykb Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.82 2004/10/20 18:12:25 andreas_kupries Exp $
VERSION = @TCL_VERSION@
@@ -586,13 +586,13 @@ install-libraries: libraries install-tzdata install-msgs
install-tzdata:
@echo "Installing time zone data"
- @TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \
+ @TCL_LIBRARY="${LIBRARY_DIR}"; export TCL_LIBRARY; \
./$(TCLSH) "$(ROOT_DIR)/tools/installData.tcl" \
"$(ROOT_DIR)/library/tzdata" "$(SCRIPT_INSTALL_DIR)/tzdata"
install-msgs:
@echo "Installing message catalogs"
- @TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \
+ @TCL_LIBRARY="${LIBRARY_DIR}"; export TCL_LIBRARY; \
./$(TCLSH) "$(ROOT_DIR)/tools/installData.tcl" \
"$(ROOT_DIR)/library/msgs" "$(SCRIPT_INSTALL_DIR)/msgs"