Overview
Comment: | Updated to clean up archive files after installation |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e3565593fdd67e9f6cde3b2e7e6ddf21 |
User & Date: | rkeene on 2010-09-26 04:39:59 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:40 |
Added support for i586-mingw32msvc compilation
Added patch to allow use of AR/RANLIB environment variables check-in: 9bdee0a947 user: rkeene tags: trunk | |
04:39 | Updated to clean up archive files after installation check-in: e3565593fd user: rkeene tags: trunk | |
04:39 | Updated to build under i586-mingw32msvc check-in: 19963bc8da user: rkeene tags: trunk | |
Changes
Modified tcl/build.sh from [56c78273b3] to [5c0e5e63d0].
︙ | ︙ | |||
66 67 68 69 70 71 72 73 74 75 76 77 78 | ${MAKE:-make} install 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 break done ) || exit 1 exit 0 | > | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | ${MAKE:-make} install 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 break done ) || exit 1 exit 0 |