Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions cpython-unix/build-cpython.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1376,6 +1376,13 @@ if [ -d "${TOOLS_PATH}/deps/lib/tcl9" ]; then
)
fi

# Prune the tk demos which are > 1 MB and not used
rm -rf "${ROOT}/out/python/install/lib/tk9.0/demos"

# Prune the tcl/tk translations
rm -rf "${ROOT}/out/python/install/lib/tcl9.0/msgs"
rm -rf "${ROOT}/out/python/install/lib/tk9.0/msgs"

# Copy the terminfo database if present.
if [ -d "${TOOLS_PATH}/deps/usr/share/terminfo" ]; then
cp -av "${TOOLS_PATH}/deps/usr/share/terminfo" "${ROOT}/out/python/install/share/"
Expand Down
Loading