Differences From Artifact [34c4911af7]:
- Executable file tcl/build.sh — part of check-in [bf4e895d30] at 2010-09-26 04:41:52 on branch trunk — Updated to include all encodings by default, but support including only the 8 from original Tclkit (user: rkeene, size: 2870) [annotate] [blame] [check-ins using]
To Artifact [83493fb613]:
- Executable file
tcl/build.sh
— part of check-in
[66930bd6ef]
at
2010-09-26 04:42:08
on branch trunk
— Added support for minimal builds
Fixed potential loading issue for zlib in pure Tcl metakit (user: rkeene, size: 2919) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
83 84 85 86 87 88 89 | mkdir "${OUTDIR}/lib" || exit 1 cp -r "${INSTDIR}/lib"/* "${OUTDIR}/lib/" rm -rf "${OUTDIR}/lib/pkgconfig" rm -f "${OUTDIR}"/lib/* >/dev/null 2>/dev/null find "${OUTDIR}" -name '*.a' | xargs rm -f >/dev/null 2>/dev/null # Clean up packages that are not needed | > | > | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | mkdir "${OUTDIR}/lib" || exit 1 cp -r "${INSTDIR}/lib"/* "${OUTDIR}/lib/" rm -rf "${OUTDIR}/lib/pkgconfig" rm -f "${OUTDIR}"/lib/* >/dev/null 2>/dev/null find "${OUTDIR}" -name '*.a' | xargs rm -f >/dev/null 2>/dev/null # Clean up packages that are not needed if [ -n "${KITCREATOR_MINBUILD}" ]; then find "${OUTDIR}" -name "tcltest*" -type d | xargs rm -rf fi # Clean up encodings if [ -n "${KITCREATOR_MINENCODINGS}" ]; then KEEPENCODINGS=" ascii.enc cp1252.enc iso8859-1.enc iso8859-15.enc iso8859-2.enc koi8-r.enc macRoman.enc " export KEEPENCODINGS find "${OUTDIR}/lib" -name 'encoding' -type d | while read encdir; do ( |
︙ | ︙ |