From 5b509d993d3a3a212b4033815be8b7b439fac672 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 12 Oct 2020 15:49:59 +0200 Subject: lib/time, time/tzdata: update tz data to 2020b Set ZFLAGS="-b fat" as the default was changed to '-b slim', see http://mm.icann.org/pipermail/tz-announce/2020-October/000059.html This will make sure that backwards-compatibibilty data is still emitted. Updates #22487 Change-Id: I310a1b3a91e435673d1df41fbf8bb76abce1f94d Reviewed-on: https://go-review.googlesource.com/c/go/+/261363 Trust: Tobias Klauser Run-TryBot: Tobias Klauser TryBot-Result: Go Bot Reviewed-by: Ian Lance Taylor --- lib/time/update.bash | 6 +++--- lib/time/zoneinfo.zip | Bin 782509 -> 783364 bytes 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/time/update.bash b/lib/time/update.bash index 683d0cf390..54d7676d5d 100755 --- a/lib/time/update.bash +++ b/lib/time/update.bash @@ -8,8 +8,8 @@ # Consult https://www.iana.org/time-zones for the latest versions. # Versions to use. -CODE=2020a -DATA=2020a +CODE=2020b +DATA=2020b set -e rm -rf work @@ -21,7 +21,7 @@ curl -L -O https://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.g tar xzf tzcode$CODE.tar.gz tar xzf tzdata$DATA.tar.gz -make CFLAGS=-DSTD_INSPIRED AWK=awk TZDIR=zoneinfo posix_only +make CFLAGS=-DSTD_INSPIRED AWK=awk TZDIR=zoneinfo ZFLAGS="-b fat" posix_only cd zoneinfo rm -f ../../zoneinfo.zip diff --git a/lib/time/zoneinfo.zip b/lib/time/zoneinfo.zip index c4bfd5e5de..e3eea2f5ad 100644 Binary files a/lib/time/zoneinfo.zip and b/lib/time/zoneinfo.zip differ -- cgit v1.2.1