diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-10-30 14:14:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 14:14:25 (GMT) |
commit | 31368a4f0e531c19affe2a1becd25fc316bc7501 (patch) | |
tree | 79627d42611a04288b832799204c77b2688f9872 /Makefile.pre.in | |
parent | 9204fb8623896cc5f68ae350784ee25e8a7b2184 (diff) | |
download | cpython-31368a4f0e531c19affe2a1becd25fc316bc7501.zip cpython-31368a4f0e531c19affe2a1becd25fc316bc7501.tar.gz cpython-31368a4f0e531c19affe2a1becd25fc316bc7501.tar.bz2 |
bpo-35081: Move Include/pyatomic.c to Include/internal/ (GH-10239)
Add pyatomic.h to the VS project (it wasn't referenced).
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 61b469d..232025f 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -988,7 +988,6 @@ PYTHON_HEADERS= \ $(srcdir)/Include/pgen.h \ $(srcdir)/Include/pgenheaders.h \ $(srcdir)/Include/pyarena.h \ - $(srcdir)/Include/pyatomic.h \ $(srcdir)/Include/pycapsule.h \ $(srcdir)/Include/pyctype.h \ $(srcdir)/Include/pydebug.h \ @@ -1029,6 +1028,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/ceval.h \ $(srcdir)/Include/internal/gil.h \ $(srcdir)/Include/internal/mem.h \ + $(srcdir)/Include/internal/pyatomic.h \ $(srcdir)/Include/internal/pygetopt.h \ $(srcdir)/Include/internal/pystate.h \ $(srcdir)/Include/internal/context.h \ |