From d6a6878c0a4637d859f488bf4a76d51092d8cb36 Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Mon, 2 Nov 2020 15:01:40 +1100 Subject: Generate fat datafiles pytz can still only read the deprecated 'fat' compiled timezone datafiles. Support for 'slim' datafiles should be done by using the Python 3.9 parser and the available backports. Python 2.7 will be stuck only able to use the 'fat' format. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fb1a856..ac0a755 100644 --- a/Makefile +++ b/Makefile @@ -138,7 +138,7 @@ upload_docs_pythonhosted: docs touch $@ .stamp-zoneinfo: - ${MAKE} -C ${IANA} TOPDIR=`pwd`/build USRDIR= USRSHAREDIR=etc install + ${MAKE} -C ${IANA} ZFLAGS='-b fat' TOPDIR=`pwd`/build USRDIR= USRSHAREDIR=etc install # Break hard links, working around http://bugs.python.org/issue8876. for d in zoneinfo zoneinfo-leaps zoneinfo-posix; do \ rm -rf `pwd`/build/etc/$$d.tmp; \ -- cgit v1.2.1