diff options
author | andreas_kupries <akupries@shaw.ca> | 2002-09-04 17:44:55 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2002-09-04 17:44:55 (GMT) |
commit | 94070c1c42bef40c08fe972d66c1b932240d202f (patch) | |
tree | 4cb1601b971e744fcdb072308ed14a910526ed9e /win | |
parent | 45e3631faf0960201c791c0b5ae29662c97b0fe2 (diff) | |
download | tk-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.
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 12 |
1 files changed, 10 insertions, 2 deletions
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) \ |