diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-28 22:10:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 22:10:49 (GMT) |
commit | 46a37a1a92a1fc2850979d9d56a70afe4ea10b94 (patch) | |
tree | d24f9abec23fd49bf618fadead156ad4687266ae | |
parent | 4a0af0cfdcc0b81da5d78dc219df4985c4403f9c (diff) | |
download | cpython-46a37a1a92a1fc2850979d9d56a70afe4ea10b94.zip cpython-46a37a1a92a1fc2850979d9d56a70afe4ea10b94.tar.gz cpython-46a37a1a92a1fc2850979d9d56a70afe4ea10b94.tar.bz2 |
[3.12] gh-119538: Add missing expat build dependencies (GH-119647) (#119686)
xmltok_impl.c and xmltok_ns.c are _included_ in xmltok.c by the C
pre-processor.
(cherry picked from commit 606be663622c6784aed4ffa55b877adbd6fe8e54)
Co-authored-by: Erlend E. Aasland <erlend@python.org>
-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 548a4ec..4a957fb 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -578,7 +578,9 @@ LIBEXPAT_HEADERS= \ Modules/expat/utf8tab.h \ Modules/expat/xmlrole.h \ Modules/expat/xmltok.h \ - Modules/expat/xmltok_impl.h + Modules/expat/xmltok_impl.h \ + Modules/expat/xmltok_impl.c \ + Modules/expat/xmltok_ns.c ########################################################################## # hashlib's HACL* library |