Differences From Artifact [ed95cc9314]:
- Executable file kitcreator — part of check-in [eaa71f15f8] at 2011-10-03 19:54:18 on branch trunk — Fixed bug in checking for the need to run "build/pre.sh" (user: rkeene, size: 4334) [annotate] [blame] [check-ins using]
To Artifact [e5a4f5c30e]:
- Executable file
kitcreator
— part of check-in
[2906d8d4b0]
at
2011-11-14 04:23:33
on branch tcl-sdk-support
— Added support for performing post-build actions
Added post-build action "sdk" for building a KitDLL SDK if KitDLL building was requested (user: rkeene, size: 4444) [annotate] [blame] [check-ins using] [more...]
︙ | |||
165 166 167 168 169 170 171 172 173 | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | + + + + + + + + | if [ "${buildfailed}" != "0" ]; then echo 'WARNING: Build is likely incomplete or failed.' >&2 fi cp 'kitsh/build'/kitsh-*/libtclkit* . >/dev/null 2>/dev/null cp 'kitsh/build'/kitsh-*/kit "tclkit-${TCLVERS}" >/dev/null 2>/dev/null for postscript in common/post/*; do if [ ! -f "${postscript}" ]; then continue fi "${postscript}" done exit "${buildfailed}" |