diff options
author | Kevin B Kenny <kennykb@acm.org> | 2009-04-09 20:07:18 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2009-04-09 20:07:18 (GMT) |
commit | 9185b616460eb962ba1546ffb5db0eabd0d68619 (patch) | |
tree | 38e47af913c3009290fa2f0998b2b69e7ac7be75 /tools | |
parent | c67ebc59a77414e7ae761c6b723c2bf49821c829 (diff) | |
download | tcl-9185b616460eb962ba1546ffb5db0eabd0d68619.zip tcl-9185b616460eb962ba1546ffb5db0eabd0d68619.tar.gz tcl-9185b616460eb962ba1546ffb5db0eabd0d68619.tar.bz2 |
Olson's tzdata2009e
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..8355a8a 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.10 2009/04/09 20:07:18 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 |