summaryrefslogtreecommitdiffstats
path: root/tools/tclZIC.tcl
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2005-11-28 15:37:19 (GMT)
committerKevin B Kenny <kennykb@acm.org>2005-11-28 15:37:19 (GMT)
commit1f2642848c07487ab88ff382fe7a9a1031a98c29 (patch)
treed6022ea309394ccd81b7c8f5b8faac421007551a /tools/tclZIC.tcl
parent5faf0edf573054b2d6a99deecf9dd30baae3282d (diff)
downloadtcl-1f2642848c07487ab88ff382fe7a9a1031a98c29.zip
tcl-1f2642848c07487ab88ff382fe7a9a1031a98c29.tar.gz
tcl-1f2642848c07487ab88ff382fe7a9a1031a98c29.tar.bz2
Corrected bug in DST transition times for locales that specify transition in local Standard Time
Diffstat (limited to 'tools/tclZIC.tcl')
-rwxr-xr-xtools/tclZIC.tcl9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/tclZIC.tcl b/tools/tclZIC.tcl
index f3750c1..5595264 100755
--- a/tools/tclZIC.tcl
+++ b/tools/tclZIC.tcl
@@ -12,7 +12,7 @@
# Parameters:
# inputDir - Directory (e.g., tzdata2003e) where Olson's source
# files are to be found.
-# outputDir - Directory (e.g., ../library/clock/tzdata) where
+# outputDir - Directory (e.g., ../library/tzdata) where
# the time zone information files are to be placed.
#
# Results:
@@ -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.5 2005/05/10 18:35:25 kennykb Exp $
+# RCS: @(#) $Id: tclZIC.tcl,v 1.6 2005/11/28 15:37:20 kennykb Exp $
#
#----------------------------------------------------------------------
@@ -1158,7 +1158,7 @@ proc convertTimeOfDay {seconds stdGMTOffset DSTOffset timeOfDay flag} {
incr seconds [expr {-$stdGMTOffset}]
incr seconds [expr {-$DSTOffset}]
}
- z {
+ s {
incr seconds [expr {-$stdGMTOffset}]
}
}
@@ -1339,6 +1339,9 @@ proc writeLinks {outDir} {
lassign $argv inDir outDir
+puts "Olson files in $inDir"
+puts "Tcl files to be placed in $outDir"
+
# Initialize count of errors
set errorCount 0