Differences From Artifact [335e335ef4]:
- Executable file kitcreator — part of check-in [e71a022c66] at 2010-09-26 04:41:56 on branch trunk — Cleaned up cleaning up routine (user: rkeene, size: 1879) [annotate] [blame] [check-ins using]
To Artifact [f500eec8e3]:
- Executable file
kitcreator
— part of check-in
[65a0497bd0]
at
2010-09-26 04:42:28
on branch trunk
— KitCreator 0.2.1.x
Fixed failure to clean kitsh directory when producing releases (user: rkeene, size: 1885) [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="kitsh 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 |
︙ | ︙ |