Overview
Comment: | Updated to remove archives that should not be linked against |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9803654e91a02a7c70b021d383bc963b |
User & Date: | rkeene on 2013-07-03 04:59:30 |
Other Links: | manifest | tags |
Context
2013-07-03
| ||
05:09 | Made win32 and linux-i386 tests runnable check-in: ccebee74a5 user: rkeene tags: trunk | |
04:59 | Updated to remove archives that should not be linked against check-in: 9803654e91 user: rkeene tags: trunk | |
2013-05-18
| ||
18:44 | Added patches for Tcl 8.6.0 related to not having a writable /tmp check-in: 6d957a95a7 user: rkeene tags: trunk | |
Changes
Modified tcl/build.sh from [f8a9b7f22e] to [a2038d7121].
︙ | ︙ | |||
261 262 263 264 265 266 267 268 269 270 271 272 273 274 | 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 | > > > | 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | 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 # Remove archive files that are just stubs for other files find "${INSTDIR}" -name '*.a' ! -name '*stub*' | grep -v '/libtcl[0-9\.][0-9\.]*\.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 |
︙ | ︙ |