diff options
author | dgp <dgp@noemail.net> | 2002-06-21 22:23:20 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-06-21 22:23:20 (GMT) |
commit | 6ef0a9dff9a8d3fd9c1f687718699e8507e9aac8 (patch) | |
tree | 5acd2b643631068fe95272f329b431f4cd2b6b76 /unix | |
parent | 99b76cf2a1e2b30a5beba3db309e199dd428530d (diff) | |
download | tcl-6ef0a9dff9a8d3fd9c1f687718699e8507e9aac8.zip tcl-6ef0a9dff9a8d3fd9c1f687718699e8507e9aac8.tar.gz tcl-6ef0a9dff9a8d3fd9c1f687718699e8507e9aac8.tar.bz2 |
* Updated all package install directories to match current Major.minor
versions of the packages. Added tcltest package to installation on
Windows.
FossilOrigin-Name: c89d65c5e7bc6a5fc28472320ce02499d31d1621
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 9879ec6..0839b68 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.100 2002/06/06 17:37:55 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.101 2002/06/21 22:23:21 dgp Exp $ VERSION = @TCL_VERSION@ @@ -590,7 +590,7 @@ install-libraries: libraries else true; \ fi; \ done; - @for i in http2.4 http1.0 opt0.4 encoding msgcat1.2 tcltest2.0; \ + @for i in http2.4 http1.0 opt0.4 encoding msgcat1.3 tcltest2.1; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ @@ -628,15 +628,15 @@ install-libraries: libraries do \ $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/opt0.4; \ done; - @echo "Installing library msgcat1.2 directory"; + @echo "Installing library msgcat1.3 directory"; @for j in $(TOP_DIR)/library/msgcat/*.tcl ; \ do \ - $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/msgcat1.2; \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/msgcat1.3; \ done; - @echo "Installing library tcltest2.0 directory"; + @echo "Installing library tcltest2.1 directory"; @for j in $(TOP_DIR)/library/tcltest/*.tcl ; \ do \ - $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/tcltest2.0; \ + $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/tcltest2.1; \ done; @echo "Installing library encoding directory"; @for i in $(TOP_DIR)/library/encoding/*.enc ; do \ |