Differences From Artifact [56c78273b3]:
- Executable file
tcl/build.sh
— part of check-in
[023de4a116]
at
2010-09-26 04:39:15
on branch trunk
— Updated to check for 'buildsrc' directory before untarring. If found it is used. (Untested)
Updated to download sources to a temporary file and only rename on success (user: rkeene, size: 1651) [annotate] [blame] [check-ins using]
To Artifact [5c0e5e63d0]:
- Executable file tcl/build.sh — part of check-in [e3565593fd] at 2010-09-26 04:39:59 on branch trunk — Updated to clean up archive files after installation (user: rkeene, size: 1719) [annotate] [blame] [check-ins using]
66 66 67 67 ${MAKE:-make} install 68 68 69 69 mkdir "${OUTDIR}/lib" || exit 1 70 70 cp -r "${INSTDIR}/lib"/* "${OUTDIR}/lib/" 71 71 rm -rf "${OUTDIR}/lib/pkgconfig" 72 72 rm -f "${OUTDIR}"/lib/* >/dev/null 2>/dev/null 73 + find "${OUTDIR}" -name '*.a' | xargs rm -f >/dev/null 2>/dev/null 73 74 74 75 break 75 76 done 76 77 ) || exit 1 77 78 78 79 exit 0