Overview
| Comment: | Added build status output |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
740690ff2946c5cef5f3283170b7a53b |
| 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 28 29 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 | + + + + + |
if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then
rm -f "${pkg}/build.log"
rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build"
continue
fi
echo -n "Building ${pkg} ..."
failed="0"
(
cd "${pkg}" || exit 1
./build.sh > build.log 2>&1 || exit 1
) || failed="1"
if [ "${failed}" = "1" ]; then
echo " failed."
failedpkgs="${failedpkgs} ${pkg}"
else
echo " done."
fi
case "${pkg}" in
tcl)
TCLCONFIGDIR=$(find "$(pwd)/tcl/build" -name tclConfig.sh | head -1 | sed 's@/[^/]*$@@')
export TCLCONFIGDIR
;;
|
| ︙ |