diff options
author | Sam Gross <colesbury@gmail.com> | 2023-12-20 21:07:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 21:07:17 (GMT) |
commit | a3e8afe0a3b5868440501edf579d1d4711c0fb18 (patch) | |
tree | c9e5cbfd5bd2fca1e96b054fba124a04c6582849 /Makefile.pre.in | |
parent | 713e42822f5c74d8420f641968c3bef4b10a513a (diff) | |
download | cpython-a3e8afe0a3b5868440501edf579d1d4711c0fb18.zip cpython-a3e8afe0a3b5868440501edf579d1d4711c0fb18.tar.gz cpython-a3e8afe0a3b5868440501edf579d1d4711c0fb18.tar.bz2 |
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.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 95b2f24..4e2ec97 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 \ |