Overview
Comment: | Fixed typo in previous commit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
12229dcfc47837913432d7a9e7964338 |
User & Date: | rkeene on 2010-09-26 04:41:44 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:41 |
Changed the default action to remove all encodings (except 8)
Removed tcltest package from Tclkit check-in: a0f6913a43 user: rkeene tags: trunk | |
04:41 | Fixed typo in previous commit check-in: 12229dcfc4 user: rkeene tags: trunk | |
04:41 |
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 check-in: 32589cdef2 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [69556eb898] to [881c2f8086].
︙ | ︙ | |||
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 |
︙ | ︙ |