From a3e8afe0a3b5868440501edf579d1d4711c0fb18 Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Wed, 20 Dec 2023 16:07:17 -0500 Subject: [PATCH] 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. --- Makefile.pre.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 95b2f246ed5..4e2ec974b79 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -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 \