Overview
Comment: | Corrected teapot index creation for Tclx Corrected order of printing of working directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 3d6c0da0bc9e6380cbe792b067c869fe84f19f64 |
User & Date: | rkeene on 2010-02-05 05:03:09 |
Other Links: | manifest | tags |
Context
2010-02-05
| ||
05:12 | Added support for multiple teapot servers Added teapot.rkeene.org to teapot servers check-in: 80b9e66ca3 user: rkeene tags: trunk | |
05:03 | Corrected teapot index creation for Tclx Corrected order of printing of working directory check-in: 3d6c0da0bc user: rkeene tags: trunk | |
04:59 | Updated Tclx build target to install correctly check-in: 3541b6d929 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/Tclx/build.sh from [7ac5b6a99b] to [68a541395b].
84 84 CFLAGS="${CFLAGS} -I${TCLPRIVATE} -I${TCLPRIVATE}/generic -I${TCLPRIVATE}/unix" 85 85 export CFLAGS 86 86 fi 87 87 88 88 89 89 bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --libdir="${PLATDIR}" 90 90 ${MAKE:-make} || exit 1 91 -) || exit 1 92 91 93 -( 94 92 mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null 95 93 96 94 ${MAKE:-make} install-lib-binaries PKG_DIR='' || exit 1 97 95 98 - ../create_teapot "${PLATDIR}/teapot.txt" "Tclx" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "Extended Tcl" 99 96 ) || exit 1 97 + 98 +../create_teapot "${PLATDIR}/teapot.txt" "Tclx" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "Extended Tcl" 100 99 101 100 exit 0
Modified server/buildpkgs/build_all.sh from [73b14e71ab] to [15c7c52166].
43 43 faileddirs="" 44 44 for dir in */; do 45 45 export dir 46 46 47 47 if [ ! -f "${dir}/build.sh" ]; then 48 48 continue 49 49 fi 50 + 51 + if [ "${CLEANONLY}" = "0" ]; then 52 + echo "Building ${dir}" 53 + fi 50 54 51 55 failed=0 52 56 ( 53 57 cd "${dir}" || exit 1 54 58 55 59 rm -rf "build" "out" 56 60 rm -f failed-*.log ................................................................................ 62 66 fi 63 67 64 68 mkdir -p "out/${PLATFORM}" >/dev/null 2>/dev/null 65 69 66 70 ./build.sh > "out/${PLATFORM}/build.log" 2>&1 || exit 1 67 71 ) || failed=1 68 72 69 - if [ "${CLEANONLY}" = "0" ]; then 70 - echo "Building ${dir}" 71 - fi 72 - 73 73 if [ "${failed}" = "1" ]; then 74 74 cp "${dir}/out/${PLATFORM}/build.log" "${dir}/failed-${PLATFORM}-`hostname`.log" 75 75 76 76 rm -rf "${dir}/out" 77 77 faileddirs="${faileddirs} ${dir}" 78 78 echo "Failed to build ${dir}" 79 79 fi