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: | 9803654e91a02a7c70b021d383bc963be5255a1e |
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 261 262 262 mkdir "${OUTDIR}/lib" || exit 1 263 263 cp -r "${INSTDIR}/lib"/* "${OUTDIR}/lib/" 264 264 rm -rf "${OUTDIR}/lib/pkgconfig" 265 265 rm -f "${OUTDIR}"/lib/* >/dev/null 2>/dev/null 266 266 find "${OUTDIR}" -name '*.a' | xargs rm -f >/dev/null 2>/dev/null 267 267 268 + # Remove archive files that are just stubs for other files 269 + find "${INSTDIR}" -name '*.a' ! -name '*stub*' | grep -v '/libtcl[0-9\.][0-9\.]*\.a$' | xargs rm -f >/dev/null 2>/dev/null 270 + 268 271 # Clean up packages that are not needed 269 272 if [ -n "${KITCREATOR_MINBUILD}" ]; then 270 273 find "${OUTDIR}" -name "tcltest*" -type d | xargs rm -rf 271 274 fi 272 275 273 276 # Clean up encodings 274 277 if [ -n "${KITCREATOR_MINENCODINGS}" ]; then