summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2002-09-04 17:44:55 (GMT)
committerandreas_kupries <akupries@shaw.ca>2002-09-04 17:44:55 (GMT)
commit94070c1c42bef40c08fe972d66c1b932240d202f (patch)
tree4cb1601b971e744fcdb072308ed14a910526ed9e
parent45e3631faf0960201c791c0b5ae29662c97b0fe2 (diff)
downloadtk-94070c1c42bef40c08fe972d66c1b932240d202f.zip
tk-94070c1c42bef40c08fe972d66c1b932240d202f.tar.gz
tk-94070c1c42bef40c08fe972d66c1b932240d202f.tar.bz2
* 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.
-rw-r--r--ChangeLog7
-rw-r--r--win/Makefile.in12
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 <andreas_kupries@users.sourceforge.net>
+
+ * 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 <jeffh@ActiveState.com>
* 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) \