diff options
author | andreas_kupries <akupries@shaw.ca> | 2008-07-21 19:44:37 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2008-07-21 19:44:37 (GMT) |
commit | 4ddfd8ad061c4cb4c3f1873462d8a94186a1cae8 (patch) | |
tree | 2cef0b46f90a0538a5a505a7417c3564145d0917 | |
parent | ee9aa214c65a48c44f14e0b78ea877cb7c8ea28f (diff) | |
download | tcl-4ddfd8ad061c4cb4c3f1873462d8a94186a1cae8.zip tcl-4ddfd8ad061c4cb4c3f1873462d8a94186a1cae8.tar.gz tcl-4ddfd8ad061c4cb4c3f1873462d8a94186a1cae8.tar.bz2 |
Undo local changes which did not belong in the last commit.
-rw-r--r-- | tools/genStubs.tcl | 5 | ||||
-rw-r--r-- | unix/Makefile.in | 6 | ||||
-rw-r--r-- | win/Makefile.in | 8 |
3 files changed, 8 insertions, 11 deletions
diff --git a/tools/genStubs.tcl b/tools/genStubs.tcl index 4050d21..5390456 100644 --- a/tools/genStubs.tcl +++ b/tools/genStubs.tcl @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: genStubs.tcl,v 1.22.2.1 2008/07/21 19:38:21 andreas_kupries Exp $ +# RCS: @(#) $Id: genStubs.tcl,v 1.22.2.2 2008/07/21 19:44:37 andreas_kupries Exp $ package require Tcl 8.4 @@ -208,9 +208,6 @@ proc genStubs::rewriteFile {file text} { set in [open ${file} r] set out [open ${file}.new w] - # Hardwire the genstubs output to Unix eol. - fconfigure $out -translation lf - while {![eof $in]} { set line [gets $in] if {[string match "*!BEGIN!*" $line]} { diff --git a/unix/Makefile.in b/unix/Makefile.in index 5fe8a5c..aa3df78 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.229.2.4 2008/07/21 19:38:21 andreas_kupries Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.229.2.5 2008/07/21 19:44:37 andreas_kupries Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -876,8 +876,8 @@ install-private-headers: libraries $(INSTALL_DATA) tclConfig.h "$(PRIVATE_INCLUDE_INSTALL_DIR)"; \ fi; -#Makefile: $(UNIX_DIR)/Makefile.in $(DLTEST_DIR)/Makefile.in -# $(SHELL) config.status +Makefile: $(UNIX_DIR)/Makefile.in $(DLTEST_DIR)/Makefile.in + $(SHELL) config.status #tclConfig.h: $(UNIX_DIR)/tclConfig.h.in # $(SHELL) config.status diff --git a/win/Makefile.in b/win/Makefile.in index 76d9302..f1810fa 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.124.2.1 2008/07/21 19:38:22 andreas_kupries Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.124.2.2 2008/07/21 19:44:37 andreas_kupries Exp $ VERSION = @TCL_VERSION@ @@ -717,8 +717,8 @@ gdb: binaries depend: -#Makefile: $(SRC_DIR)/Makefile.in -# ./config.status +Makefile: $(SRC_DIR)/Makefile.in + ./config.status cleanhelp: $(RM) *.hlp *.cnt *.GID *.rtf man2tcl.exe @@ -747,4 +747,4 @@ genstubs: "$(GENERIC_DIR_NATIVE)" \ "$(GENERIC_DIR_NATIVE)\tcl.decls" \ "$(GENERIC_DIR_NATIVE)\tclInt.decls" \ - "$(GENERIC_DIR_NATIVE)\tclTomMath.decls"
\ No newline at end of file + "$(GENERIC_DIR_NATIVE)\tclTomMath.decls" |