Skip to content

Commit

Permalink
pythongh-113330: Fix mimalloc headers reference (python#113331)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
colesbury committed Dec 20, 2023
1 parent 713e428 commit a3e8afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit a3e8afe

Please sign in to comment.