Overview
| Comment: | Updated to support Tcl/Tk license.terms in root directory (seems to have moved with 8.6) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
be74a816de65888413b310c61c5eb882 |
| User & Date: | rkeene on 2011-11-19 00:30:57 |
| Other Links: | manifest | tags |
Context
|
2011-11-19
| ||
| 00:49 |
Switched to more complete cross-compiling environment for Linux/x86_64
Added more test builds for Linux/x86_64 check-in: f2f5daaf90 user: rkeene tags: trunk | |
| 00:30 | Updated to support Tcl/Tk license.terms in root directory (seems to have moved with 8.6) check-in: be74a816de user: rkeene tags: trunk | |
|
2011-11-18
| ||
| 18:56 | Corrected name of "mk4tcl" project check-in: f24c1d7c1e user: rkeene tags: trunk | |
Changes
Modified common/post/sdk.sh from [3c8c3ad1cc] to [8d67b5681a].
| ︙ | ︙ | |||
30 31 32 33 34 35 36 |
for dir in */; do
if [ ! -d "${dir}/build" ]; then
continue
fi
project="$(basename "${dir}")"
| | | > | > > > | 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 56 57 58 59 |
for dir in */; do
if [ ! -d "${dir}/build" ]; then
continue
fi
project="$(basename "${dir}")"
projdir="$(cd "${dir}/build"/* >/dev/null 2>/dev/null || exit; /bin/pwd)"
docdir="__tmp__/doc/${project}"
if [ -z "${projdir}" -o ! -d "${projdir}" ]; then
continue
fi
mkdir -p "${docdir}"
case "${project}" in
itcl|tcl|tk)
if [ -f "${projdir}/doc/license.terms" ]; then
cp "${projdir}/doc/license.terms" "${docdir}/"
elif [ -f "${projdir}/license.terms" ]; then
cp "${projdir}/license.terms" "${docdir}/"
fi
;;
tclvfs|kitsh|mk4tcl|thread)
cp "${projdir}/license.terms" "${docdir}/"
;;
zlib)
cp "${projdir}/README" "${docdir}/"
;;
|
| ︙ | ︙ |