diff options
author | Guido van Rossum <guido@python.org> | 2021-11-23 16:56:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 16:56:06 (GMT) |
commit | 5be98e57b3c3b36d1a1176b49c73b8822c6380e7 (patch) | |
tree | 4791beb2411c0112b19d8fa6b6e867bb33416299 /configure.ac | |
parent | ae1965ccb4b1fad63fab40fe8805d1b8247668d3 (diff) | |
download | cpython-5be98e57b3c3b36d1a1176b49c73b8822c6380e7.zip cpython-5be98e57b3c3b36d1a1176b49c73b8822c6380e7.tar.gz cpython-5be98e57b3c3b36d1a1176b49c73b8822c6380e7.tar.bz2 |
bpo-45873: Get rid of bootstrap_python (#29717)
Instead we use $(PYTHON_FOR_REGEN) .../deepfreeze.py with the
frozen .h file as input, as we did for Windows in bpo-45850.
We also get rid of the code that generates the .h files
when make regen-frozen is run (i.e., .../make_frozen.py),
and the MANIFEST file.
Restore Python 3.8 and 3.9 as Windows host Python again
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a950cc9..ba22418 100644 --- a/configure.ac +++ b/configure.ac @@ -5613,6 +5613,7 @@ SRCDIRS="\ Parser \ Programs \ Python \ + Python/frozen_modules \ Python/deepfreeze" AC_MSG_CHECKING(for build directories) for dir in $SRCDIRS; do |