Skip to content

Commit a3e8afe

Browse files
authored
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.
1 parent 713e428 commit a3e8afe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1797,7 +1797,7 @@ PYTHON_HEADERS= \
17971797
$(srcdir)/Include/cpython/warnings.h \
17981798
$(srcdir)/Include/cpython/weakrefobject.h \
17991799
\
1800-
@MIMALLOC_HEADERS@ \
1800+
$(MIMALLOC_HEADERS) \
18011801
\
18021802
$(srcdir)/Include/internal/pycore_abstract.h \
18031803
$(srcdir)/Include/internal/pycore_asdl.h \

0 commit comments

Comments
 (0)