diff options
author | Kevin B Kenny <kennykb@acm.org> | 2003-10-21 00:23:33 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2003-10-21 00:23:33 (GMT) |
commit | 069e6b39be18f68043fb7389188c1e8d2a6afb06 (patch) | |
tree | 2ed74cd43101586ffe55de9721f1354589548214 /unix | |
parent | 7c7a39a26c9bd772bf26ae6fd1be320d392d10db (diff) | |
download | tcl-069e6b39be18f68043fb7389188c1e8d2a6afb06.zip tcl-069e6b39be18f68043fb7389188c1e8d2a6afb06.tar.gz tcl-069e6b39be18f68043fb7389188c1e8d2a6afb06.tar.bz2 |
TIP #156: Language-Neutral Root Locale for Msgcat
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 2d871c5..1de7db7 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.132 2003/07/23 15:40:26 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.133 2003/10/21 00:23:34 kennykb Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -632,7 +632,7 @@ install-libraries: libraries else true; \ fi; \ done; - @for i in http2.4 http1.0 opt0.4 encoding msgcat1.3 tcltest2.2; \ + @for i in http2.4 http1.0 opt0.4 encoding msgcat1.4 tcltest2.2; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ @@ -670,10 +670,10 @@ install-libraries: libraries do \ $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/opt0.4; \ done; - @echo "Installing library msgcat1.3 directory"; + @echo "Installing library msgcat1.4 directory"; @for j in $(TOP_DIR)/library/msgcat/*.tcl ; \ do \ - $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/msgcat1.3; \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/msgcat1.4; \ done; @echo "Installing library tcltest2.2 directory"; @for j in $(TOP_DIR)/library/tcltest/*.tcl ; \ |