diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | win/Makefile.in | 6 |
2 files changed, 12 insertions, 3 deletions
@@ -1,3 +1,12 @@ +2004-10-20 Andreas Kupries <andreask@activestate.com> + + * 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. + 2004-10-20 Don Porter <dgp@users.sourceforge.net> * generic/tclThreadTest.c (ThreadEventProc): Corrected subtle 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" |