Differences From Artifact [69556eb898]:
- Executable file
kitcreator
— part of check-in
[32589cdef2]
at
2010-09-26 04:41:40
on branch trunk
— Fixed issue with kitcreator including excluded packages after building with
them and then building without them
Fixed issue with Tcl pure-Tcl Metakit and Tcl 8.4 (user: rkeene, size: 2017) [annotate] [blame] [check-ins using]
To Artifact [881c2f8086]:
- Executable file kitcreator — part of check-in [12229dcfc4] at 2010-09-26 04:41:44 on branch trunk — Fixed typo in previous commit (user: rkeene, size: 2016) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | if [ "$1" = "distclean" ]; then shift mode="distclean" fi # Define the list of all packages, for cleaning purposes | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | if [ "$1" = "distclean" ]; then shift mode="distclean" fi # Define the list of all packages, for cleaning purposes KITCREATOR_ALLPKGS="tcl tclvfs zlib tk itcl mk4tcl thread" for pkg in ${KITCREATOR_ALLPKGS}; do rm -f "${pkg}/build.log" rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build" if [ "${mode}" = "distclean" ]; then rm -rf "${pkg}/src" fi |
︙ | ︙ |