Differences From Artifact [9916a29d8c]:
- Executable file
kitcreator
— part of check-in
[0527703474]
at
2011-05-28 06:38:41
on branch trunk
— Updated to support finding TCLSH_NATIVE by the root kitcreator script and using that in most places where a native Tcl interpreter is needed
Updated to find date of Fossil checkin when a fossil tag or ID is specified and use that date for checkouts of other projects (user: rkeene, size: 3946) [annotate] [blame] [check-ins using] [more...]
To Artifact [841b4aa9c5]:
- Executable file kitcreator — part of check-in [fd32e55ed8] at 2011-09-14 18:25:24 on branch trunk — Updated to pass "wget" errors from Tcl build up to stderr (user: rkeene, size: 3956) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
124 125 126 127 128 129 130 | for pkg in tcl tclvfs zlib ${KITCREATOR_PKGS} kitsh; do echo -n "Building ${pkg} ..." failed="0" ( cd "${pkg}" >/dev/null 2>/dev/null || exit 1 | | | 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | for pkg in tcl tclvfs zlib ${KITCREATOR_PKGS} kitsh; do echo -n "Building ${pkg} ..." failed="0" ( cd "${pkg}" >/dev/null 2>/dev/null || exit 1 ./build.sh 3>&1 4>&2 > build.log 2>&1 || exit 1 ) || failed="1" if [ "${failed}" = "1" ]; then echo " failed." failedpkgs="${failedpkgs} ${pkg}" else echo " done." |
︙ | ︙ |