From: Sam Gross Date: Wed, 20 Dec 2023 21:07:17 +0000 (-0500) Subject: gh-113330: Fix mimalloc headers reference (#113331) X-Git-Tag: v3.13.0a3~312 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3e8afe0a3b5868440501edf579d1d4711c0fb18;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 95b2f246ed5b..4e2ec974b79e 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 \