Overview
Comment: | Added build status output |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 740690ff2946c5cef5f3283170b7a53bb93c720f |
User & Date: | rkeene on 2010-09-26 04:38:19 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:38 | Added support for not building under newer versions of Tcl check-in: 0282bb8da7 user: rkeene tags: trunk | |
04:38 | Added build status output check-in: 740690ff29 user: rkeene tags: trunk | |
04:38 | Added minimal README check-in: d8050c2a9f user: rkeene tags: trunk | |
Changes
Modified kitcreator from [22d82c1327] to [de910503cc].
28 28 if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then 29 29 rm -f "${pkg}/build.log" 30 30 rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build" 31 31 32 32 continue 33 33 fi 34 34 35 + echo -n "Building ${pkg} ..." 36 + 35 37 failed="0" 36 38 ( 37 39 cd "${pkg}" || exit 1 38 40 39 41 ./build.sh > build.log 2>&1 || exit 1 40 42 ) || failed="1" 41 43 42 44 if [ "${failed}" = "1" ]; then 45 + echo " failed." 43 46 failedpkgs="${failedpkgs} ${pkg}" 47 + else 48 + echo " done." 44 49 fi 45 50 46 51 case "${pkg}" in 47 52 tcl) 48 53 TCLCONFIGDIR=$(find "$(pwd)/tcl/build" -name tclConfig.sh | head -1 | sed 's@/[^/]*$@@') 49 54 export TCLCONFIGDIR 50 55 ;;