Overview
Comment: | Updated to be less verbose on missing directories |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | ea9a5ecf9176cac26fc49b314c1b87d9e39d2568 |
User & Date: | rkeene on 2010-09-26 04:41:00 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:41 | Began work on new pure-Tcl metakit, which will replace readkit-converted mk4tcl check-in: 7bfc5cf0e2 user: rkeene tags: trunk | |
04:41 | Updated to be less verbose on missing directories check-in: ea9a5ecf91 user: rkeene tags: trunk | |
04:40 |
Added preliminary support for using a Tcl-based metakit reader (mk4tcl.tcl,
based off ReadKit) if Mk4tcl support not found
Updated mk4tcl to cleanup if build fails, to prevent false detection check-in: 44e0b4f94c user: rkeene tags: trunk | |
Changes
Modified kitcreator from [be98577a11] to [b45aa7beb7].
37 37 continue 38 38 fi 39 39 40 40 echo -n "Building ${pkg} ..." 41 41 42 42 failed="0" 43 43 ( 44 - cd "${pkg}" || exit 1 44 + cd "${pkg}" >/dev/null 2>/dev/null || exit 1 45 45 46 46 ./build.sh > build.log 2>&1 || exit 1 47 47 ) || failed="1" 48 48 49 49 if [ "${failed}" = "1" ]; then 50 50 echo " failed." 51 51 failedpkgs="${failedpkgs} ${pkg}"