Overview
Comment: | Cleaned up cleaning up routine |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e71a022c66fdb708dc6acfa13c52e4a2 |
User & Date: | rkeene on 2010-09-26 04:41:56 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:42 | Added internal script to build minimal Tclkit for ARM check-in: 36ac498d1e user: rkeene tags: trunk | |
04:41 | Cleaned up cleaning up routine check-in: e71a022c66 user: rkeene tags: trunk | |
04:41 | Updated to include all encodings by default, but support including only the 8 from original Tclkit check-in: bf4e895d30 user: rkeene tags: trunk | |
Changes
Modified kitcreator from [881c2f8086] to [335e335ef4].
︙ | |||
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | + + - - - - | if [ "${mode}" = "distclean" ]; then rm -rf "${pkg}/src" fi done # We're all done if we're in clean or distclean mode if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then rm -f tclkit-* exit 0 fi # Add packages implied by the additional arguments if [ -z "${KITCREATOR_PKGS}" ]; then KITCREATOR_PKGS="tk itcl mk4tcl" fi CONFIGUREEXTRA="$@" export CONFIGUREEXTRA if echo " ${CONFIGUREEXTRA} " | grep ' --enable-threads' >/dev/null 2>/dev/null; then KITCREATOR_PKGS="${KITCREATOR_PKGS} thread" fi failedpkgs="" buildfailed="0" for pkg in tcl tclvfs zlib ${KITCREATOR_PKGS} kitsh; do |
︙ | |||
80 81 82 83 84 85 86 | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | - - - - - - | esac if [ "${failed}" = "1" ]; then buildfailed="1" fi done |