diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | win/Makefile.in | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,12 @@ 2006-03-20 Andreas Kupries <andreask@activestate.com> + * win/Makefile.in (install-libraries): Generate tcl8/8.4 directory + under Windows as well (cygwin Makefile). Related entry: + 2006-03-07, dgp. This moved the installation of http from 8.2 to + 8.4, partially. A fix of the required directory creation was + done for unix on Mar 10, without entry in the Changelog. This + entry is for the fix of the directory creation under Windows. + * unix/installManPage: There is always one even more broken "sed". Moved the # comment starting character in the sed script to the beginning of their respective lines. The AIX sed will not diff --git a/win/Makefile.in b/win/Makefile.in index 5a6a727..9e72d5d 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.98 2006/03/07 19:32:31 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.99 2006/03/20 19:12:02 andreas_kupries Exp $ VERSION = @TCL_VERSION@ @@ -616,7 +616,7 @@ install-libraries: libraries install-tzdata install-msgs else true; \ fi; \ done; - @for i in http1.0 opt0.4 encoding ../tcl8 ../tcl8/8.2 ../tcl8/8.3 ../tcl8/8.5; \ + @for i in http1.0 opt0.4 encoding ../tcl8 ../tcl8/8.2 ../tcl8/8.3 ../tcl8/8.4 ../tcl8/8.5; \ do \ if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ |