Differences From Artifact [dfb8a2bbd9]:
- Executable file tcl/build.sh — part of check-in [4b7dc4b29d] at 2010-09-26 04:39:03 on branch trunk — Updated to no longer quote references to MAKE (user: rkeene, size: 1447) [annotate] [blame] [check-ins using]
To Artifact [e2207437c3]:
- Executable file
tcl/build.sh
— part of check-in
[31d4e5f3a4]
at
2010-09-26 04:39:07
on branch trunk
— Installed all packages that come with Tcl
Removed demos from Tk (user: rkeene, size: 1527) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
57 58 59 60 61 62 63 | ./configure --disable-shared --prefix="${INSTDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || continue ${MAKE:-make} install mkdir "${OUTDIR}/lib" || exit 1 | | > > | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | ./configure --disable-shared --prefix="${INSTDIR}" ${CONFIGUREEXTRA} ${MAKE:-make} || continue ${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 |