diff options
author | Paul Ganssle <paul@ganssle.io> | 2020-05-19 15:55:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 15:55:18 (GMT) |
commit | 2abededbc4165d2daa14ae9d74b1f33cce0593d7 (patch) | |
tree | f06bbbd7eb60b96aea79544186203b0d820f468c /Makefile.pre.in | |
parent | a355a06fcc7ef2232736dceb012ae623335cd7ab (diff) | |
download | cpython-2abededbc4165d2daa14ae9d74b1f33cce0593d7.zip cpython-2abededbc4165d2daa14ae9d74b1f33cce0593d7.tar.gz cpython-2abededbc4165d2daa14ae9d74b1f33cce0593d7.tar.bz2 |
bpo-40683: Add zoneinfo to LIBSUBDIRS (#20229)
Without this, only the _zoneinfo module is getting installed, not the
zoneinfo module. I believe this was not noticed earlier because
test.test_zoneinfo was also not being installed.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index de50f6b..5a18704 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1429,6 +1429,7 @@ LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \ test/test_importlib/source \ test/test_importlib/zipdata01 \ test/test_importlib/zipdata02 \ + test/test_zoneinfo test/test_zoneinfo/data \ test/ziptestdata \ asyncio \ test/test_asyncio \ @@ -1450,7 +1451,8 @@ LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \ multiprocessing multiprocessing/dummy \ unittest unittest/test unittest/test/testmock \ venv venv/scripts venv/scripts/common venv/scripts/posix \ - curses pydoc_data + curses pydoc_data \ + zoneinfo libinstall: build_all $(srcdir)/Modules/xxmodule.c @for i in $(SCRIPTDIR) $(LIBDEST); \ do \ |