From 94070c1c42bef40c08fe972d66c1b932240d202f Mon Sep 17 00:00:00 2001 From: andreas_kupries Date: Wed, 4 Sep 2002 17:44:55 +0000 Subject: * win/Makefile.in (install-libraries): Added code section to install the message catalogs. Copied same section from unix/Makefile.in and adapted it to the slightly different environment. --- ChangeLog | 7 +++++++ win/Makefile.in | 12 ++++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ea58c41..ed719ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-09-04 Andreas Kupries + + * win/Makefile.in (install-libraries): Added code section to + install the message catalogs. Copied same section from + unix/Makefile.in and adapted it to the slightly different + environment. + 2002-09-03 Jeff Hobbs * library/button.tcl: further restrict buttons to not resetting diff --git a/win/Makefile.in b/win/Makefile.in index e864898..199cdcf 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.57 2002/08/26 14:32:18 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.58 2002/09/04 17:44:55 andreas_kupries Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -444,7 +444,8 @@ install-binaries: binaries install-libraries: libraries @for i in $(INSTALL_ROOT)$(prefix)/lib \ $(INCLUDE_INSTALL_DIR) $(INCLUDE_INSTALL_DIR)/X11 \ - $(SCRIPT_INSTALL_DIR) $(SCRIPT_INSTALL_DIR)/images; \ + $(SCRIPT_INSTALL_DIR) $(SCRIPT_INSTALL_DIR)/images \ + $(SCRIPT_INSTALL_DIR)/msgs; \ do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ @@ -476,6 +477,13 @@ install-libraries: libraries $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR)/images; \ fi; \ done; + @echo "Installing translation directory"; + @for i in $(ROOT_DIR)/library/msgs/*.msg; \ + do \ + if [ -f $$i ] ; then \ + $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR)/msgs; \ + fi; \ + done; install-demos: @for i in $(INSTALL_ROOT)$(prefix)/lib $(SCRIPT_INSTALL_DIR) \ -- cgit v0.12