diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2021-01-24 16:29:47 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2021-01-24 16:29:47 -0500 |
commit | c7edf4ac246b67073563354c2808c78868cbac36 (patch) | |
tree | 5c63de4b4970d60e1fae2cee735f6e2a0bb26aa9 /src/timezone/Makefile | |
parent | 0c1e8845f28bd07ad381c8b0d6701575d967b88e (diff) | |
download | postgresql-c7edf4ac246b67073563354c2808c78868cbac36.tar.gz |
Update time zone data files to tzdata release 2021a.
DST law changes in Russia (Volgograd zone) and South Sudan.
Historical corrections for Australia, Bahamas, Belize, Bermuda,
Ghana, Israel, Kenya, Nigeria, Palestine, Seychelles, and Vanuatu.
Notably, the Australia/Currie zone has been corrected to the point
where it is identical to Australia/Hobart.
Diffstat (limited to 'src/timezone/Makefile')
-rw-r--r-- | src/timezone/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/timezone/Makefile b/src/timezone/Makefile index 2b5d8ecbef..fbbaae4cc5 100644 --- a/src/timezone/Makefile +++ b/src/timezone/Makefile @@ -60,9 +60,10 @@ ifeq (,$(with_system_tzdata)) endif $(MAKE) -C tznames $@ +# Note: -P code currently depends on '-b fat'. Not worth fixing right now. abbrevs.txt: zic $(TZDATAFILES) mkdir junkdir - $(ZIC) -P -d junkdir $(TZDATAFILES) | LANG=C sort | uniq >abbrevs.txt + $(ZIC) -P -b fat -d junkdir $(TZDATAFILES) | LANG=C sort | uniq >abbrevs.txt rm -rf junkdir installdirs: |