diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-23 11:30:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-23 11:30:40 (GMT) |
commit | 984061eeb49c54fee901b92e5d3dde1c7a25cfa1 (patch) | |
tree | 39e09723485d2285a519b196376dd8983db44c6d /Makefile.pre.in | |
parent | 3bb183d7fb83ad6a84ec13dea90f95d67be35c69 (diff) | |
download | cpython-984061eeb49c54fee901b92e5d3dde1c7a25cfa1.zip cpython-984061eeb49c54fee901b92e5d3dde1c7a25cfa1.tar.gz cpython-984061eeb49c54fee901b92e5d3dde1c7a25cfa1.tar.bz2 |
bpo-35081: Add new internal headers to Makefile (GH-10670)
Add pycore_fileutils.h and pycore_object.h to Makefile.pre.in and to
the pythoncore project of PCbuild/.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 87a84eb..2b5afae 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1029,9 +1029,11 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_ceval.h \ $(srcdir)/Include/internal/pycore_condvar.h \ $(srcdir)/Include/internal/pycore_context.h \ + $(srcdir)/Include/internal/pycore_fileutils.h \ $(srcdir)/Include/internal/pycore_getopt.h \ $(srcdir)/Include/internal/pycore_gil.h \ $(srcdir)/Include/internal/pycore_hamt.h \ + $(srcdir)/Include/internal/pycore_object.h \ $(srcdir)/Include/internal/pycore_pathconfig.h \ $(srcdir)/Include/internal/pycore_pyhash.h \ $(srcdir)/Include/internal/pycore_pylifecycle.h \ |