From d051f8a8af67b9b567b7bd981571d9b2f0c9233d Mon Sep 17 00:00:00 2001
From: Isuru Fernando <isuruf@gmail.com>
Date: Wed, 7 Oct 2020 10:08:30 -0500
Subject: [PATCH 16/25] Fix TZPATH on windows

---
 Lib/sysconfig.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
index ebe3711827..d51ba78d51 100644
--- a/Lib/sysconfig.py
+++ b/Lib/sysconfig.py
@@ -666,6 +666,7 @@ def get_config_vars(*args):
         if os.name == 'nt':
             _init_non_posix(_CONFIG_VARS)
             _CONFIG_VARS['VPATH'] = sys._vpath
+            _CONFIG_VARS['TZPATH'] = os.path.join(_PREFIX, "share", "zoneinfo")
         if os.name == 'posix':
             _init_posix(_CONFIG_VARS)
         if _HAS_USER_BASE:
