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: | be74a816de65888413b310c61c5eb882117ffd3a |
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 30 31 31 for dir in */; do 32 32 if [ ! -d "${dir}/build" ]; then 33 33 continue 34 34 fi 35 35 36 36 project="$(basename "${dir}")" 37 - projdir="$(cd "${dir}/build"/* >/dev/null || exit; /bin/pwd)" 37 + projdir="$(cd "${dir}/build"/* >/dev/null 2>/dev/null || exit; /bin/pwd)" 38 38 docdir="__tmp__/doc/${project}" 39 39 40 - if [ ! -d "${projdir}" ]; then 40 + if [ -z "${projdir}" -o ! -d "${projdir}" ]; then 41 41 continue 42 42 fi 43 43 44 44 mkdir -p "${docdir}" 45 45 46 46 case "${project}" in 47 47 itcl|tcl|tk) 48 - cp "${projdir}/doc/license.terms" "${docdir}/" 48 + if [ -f "${projdir}/doc/license.terms" ]; then 49 + cp "${projdir}/doc/license.terms" "${docdir}/" 50 + elif [ -f "${projdir}/license.terms" ]; then 51 + cp "${projdir}/license.terms" "${docdir}/" 52 + fi 49 53 ;; 50 54 tclvfs|kitsh|mk4tcl|thread) 51 55 cp "${projdir}/license.terms" "${docdir}/" 52 56 ;; 53 57 zlib) 54 58 cp "${projdir}/README" "${docdir}/" 55 59 ;;