diff options
author | Kevin B Kenny <kennykb@acm.org> | 2009-04-09 20:11:51 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2009-04-09 20:11:51 (GMT) |
commit | 1d411553104b36d5a80c7a465812e262145c1942 (patch) | |
tree | c6e9c6776842463a92ff192415aa921e46afc57a /tools | |
parent | bef7925ea45ac7e83a9ecc812e9a2ccfc86fa207 (diff) | |
download | tcl-1d411553104b36d5a80c7a465812e262145c1942.zip tcl-1d411553104b36d5a80c7a465812e262145c1942.tar.gz tcl-1d411553104b36d5a80c7a465812e262145c1942.tar.bz2 |
Fix tzdata line terminators
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/tclZIC.tcl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/tclZIC.tcl b/tools/tclZIC.tcl index 07ecd5e..d5d8d9d 100755 --- a/tools/tclZIC.tcl +++ b/tools/tclZIC.tcl @@ -29,7 +29,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tclZIC.tcl,v 1.9 2006/11/03 00:34:53 hobbs Exp $ +# RCS: @(#) $Id: tclZIC.tcl,v 1.9.4.1 2009/04/09 20:12:10 kennykb Exp $ # #---------------------------------------------------------------------- @@ -1265,6 +1265,7 @@ proc writeZones {outDir} { # Write the data to the information file set f [open $fileName w] + fconfigure $f -translation lf puts $f "\# created by $::argv0 - do not edit" puts $f "" puts $f [list set TZData(:$zoneName) $data] @@ -1317,6 +1318,7 @@ proc writeLinks {outDir} { # Write the file set f [open $fileName w] + fconfigure $f -translation lf puts $f "\# created by $::argv0 - do not edit" puts $f $ifCmd puts $f $setCmd |