diff options
author | andreas_kupries <akupries@shaw.ca> | 2009-10-23 19:22:23 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2009-10-23 19:22:23 (GMT) |
commit | df73c352f557f1c2e30008f8d093c8ed0cf22f5b (patch) | |
tree | 06a53eaf276d5dce4aec2fd1af20345898c44e43 /win | |
parent | 75ce8fa7e5928f9d367eb369c9d28d367610c8c4 (diff) | |
download | tcl-df73c352f557f1c2e30008f8d093c8ed0cf22f5b.zip tcl-df73c352f557f1c2e30008f8d093c8ed0cf22f5b.tar.gz tcl-df73c352f557f1c2e30008f8d093c8ed0cf22f5b.tar.bz2 |
* library/platform/pkgIndex.tcl: Backported the platform packages
* library/platform/platform.tcl: from head and8.5 into the 8.4
* library/platform/shell.tcl: branch. Updated makefiles to install
* unix/Makfile.in: the packages.
* win/Makefile.in:
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 25cbbf7..858e2f3 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.68.2.7 2007/01/30 23:21:12 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.68.2.8 2009/10/23 19:22:24 andreas_kupries Exp $ VERSION = @TCL_VERSION@ @@ -493,7 +493,7 @@ install-libraries: libraries else true; \ fi; \ done; - @for i in http1.0 http2.5 opt0.4 encoding msgcat1.3 tcltest2.2; \ + @for i in platform http1.0 http2.5 opt0.4 encoding msgcat1.3 tcltest2.2; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ @@ -512,6 +512,11 @@ install-libraries: libraries do \ $(COPY) "$$i" "$(SCRIPT_INSTALL_DIR)"; \ done; + @echo "Installing library platform directory"; + @for j in $(ROOT_DIR)/library/platform/*.tcl; \ + do \ + $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/platform"; \ + done; @echo "Installing library http1.0 directory"; @for j in $(ROOT_DIR)/library/http1.0/*.tcl; \ do \ |