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 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
|