diff options
author | Guido van Rossum <guido@python.org> | 2024-03-18 18:13:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-18 18:13:11 (GMT) |
commit | 9c7b3688e6ff071456e0ee623b82870755ea7808 (patch) | |
tree | bc8bcc609716fb210e9ada3e514b7bd505d13d61 /configure.ac | |
parent | 7e1f38f2de8f93de362433203faa5605a0c47f0e (diff) | |
download | cpython-9c7b3688e6ff071456e0ee623b82870755ea7808.zip cpython-9c7b3688e6ff071456e0ee623b82870755ea7808.tar.gz cpython-9c7b3688e6ff071456e0ee623b82870755ea7808.tar.bz2 |
gh-108716: Cleanup remaining deepfreeze infrastructure (#116919)
Keep Tools/build/deepfreeze.py around (we may repurpose it for deepfreezing non-code objects),
and keep basic "clean" targets that remove the output of former deep-freeze activities,
to keep the build directories of current devs clean.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 02913ce..3e676c5 100644 --- a/configure.ac +++ b/configure.ac @@ -6826,8 +6826,7 @@ SRCDIRS="\ Parser/lexer \ Programs \ Python \ - Python/frozen_modules \ - Python/deepfreeze" + Python/frozen_modules" AC_MSG_CHECKING([for build directories]) for dir in $SRCDIRS; do if test ! -d $dir; then |