diff options
author | Erlend E. Aasland <erlend@python.org> | 2024-05-28 20:05:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 20:05:19 (GMT) |
commit | 606be663622c6784aed4ffa55b877adbd6fe8e54 (patch) | |
tree | f15ad48270369de140973f6ddb5afb509dd2c045 | |
parent | 5cd3ffd6b70a63dbae4d34a1b4db033e19184159 (diff) | |
download | cpython-606be663622c6784aed4ffa55b877adbd6fe8e54.zip cpython-606be663622c6784aed4ffa55b877adbd6fe8e54.tar.gz cpython-606be663622c6784aed4ffa55b877adbd6fe8e54.tar.bz2 |
gh-119538: Add missing expat build dependencies (#119647)
xmltok_impl.c and xmltok_ns.c are _included_ in xmltok.c by the C
pre-processor.
-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 a80d933..b259537 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 |