diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-28 22:10:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 22:10:59 (GMT) |
commit | ef9fd10670f70c3c26bd1f9eba48cf26229f9052 (patch) | |
tree | 87c14addb78d517d801f063d9a5190c03509726b /Makefile.pre.in | |
parent | 12a580b82d018949c40fea235d5ff8a97e362709 (diff) | |
download | cpython-ef9fd10670f70c3c26bd1f9eba48cf26229f9052.zip cpython-ef9fd10670f70c3c26bd1f9eba48cf26229f9052.tar.gz cpython-ef9fd10670f70c3c26bd1f9eba48cf26229f9052.tar.bz2 |
[3.13] gh-119538: Add missing expat build dependencies (GH-119647) (#119685)
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>
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 9e99c95..6c2f356 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -631,7 +631,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 |