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: |
3d6c0da0bc9e6380cbe792b067c869fe |
| 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 85 86 87 88 89 90 |
CFLAGS="${CFLAGS} -I${TCLPRIVATE} -I${TCLPRIVATE}/generic -I${TCLPRIVATE}/unix"
export CFLAGS
fi
bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --libdir="${PLATDIR}"
${MAKE:-make} || exit 1
| < < < > > | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
CFLAGS="${CFLAGS} -I${TCLPRIVATE} -I${TCLPRIVATE}/generic -I${TCLPRIVATE}/unix"
export CFLAGS
fi
bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --libdir="${PLATDIR}"
${MAKE:-make} || exit 1
mkdir -p "${PLATDIR}" >/dev/null 2>/dev/null
${MAKE:-make} install-lib-binaries PKG_DIR='' || exit 1
) || exit 1
../create_teapot "${PLATDIR}/teapot.txt" "Tclx" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "Extended Tcl"
exit 0
|
Modified server/buildpkgs/build_all.sh from [73b14e71ab] to [15c7c52166].
| ︙ | ︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
faileddirs=""
for dir in */; do
export dir
if [ ! -f "${dir}/build.sh" ]; then
continue
fi
failed=0
(
cd "${dir}" || exit 1
rm -rf "build" "out"
rm -f failed-*.log
if [ "${DISTCLEAN}" = "1" ]; then
rm -rf "src"
fi
if [ "${CLEANONLY}" = "1" ]; then
exit 0
fi
mkdir -p "out/${PLATFORM}" >/dev/null 2>/dev/null
./build.sh > "out/${PLATFORM}/build.log" 2>&1 || exit 1
) || failed=1
| > > > > < < < < | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
faileddirs=""
for dir in */; do
export dir
if [ ! -f "${dir}/build.sh" ]; then
continue
fi
if [ "${CLEANONLY}" = "0" ]; then
echo "Building ${dir}"
fi
failed=0
(
cd "${dir}" || exit 1
rm -rf "build" "out"
rm -f failed-*.log
if [ "${DISTCLEAN}" = "1" ]; then
rm -rf "src"
fi
if [ "${CLEANONLY}" = "1" ]; then
exit 0
fi
mkdir -p "out/${PLATFORM}" >/dev/null 2>/dev/null
./build.sh > "out/${PLATFORM}/build.log" 2>&1 || exit 1
) || failed=1
if [ "${failed}" = "1" ]; then
cp "${dir}/out/${PLATFORM}/build.log" "${dir}/failed-${PLATFORM}-`hostname`.log"
rm -rf "${dir}/out"
faileddirs="${faileddirs} ${dir}"
echo "Failed to build ${dir}"
fi
|
| ︙ | ︙ |