mirror of https://github.com/python/cpython
gh-113330: Fix mimalloc headers reference (#113331)
The `MIMALLOC_HEADERS` variable is defined in the Makefile.pre.in, not the configure script, so we should use the `$(MIMALLOC_HEADERS)` syntax instead of the `@MIMALLOC_HEADERS@` syntax.
This commit is contained in:
parent
713e42822f
commit
a3e8afe0a3
|
@ -1797,7 +1797,7 @@ PYTHON_HEADERS= \
|
|||
$(srcdir)/Include/cpython/warnings.h \
|
||||
$(srcdir)/Include/cpython/weakrefobject.h \
|
||||
\
|
||||
@MIMALLOC_HEADERS@ \
|
||||
$(MIMALLOC_HEADERS) \
|
||||
\
|
||||
$(srcdir)/Include/internal/pycore_abstract.h \
|
||||
$(srcdir)/Include/internal/pycore_asdl.h \
|
||||
|
|
Loading…
Reference in New Issue