Overview
Comment: | Added release engineering scripts |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d9d859322c7b6936b186386760f7194c |
User & Date: | rkeene on 2016-03-11 21:41:24.308 |
Other Links: | manifest | tags |
Context
2016-03-11
| ||
21:45 | Added README check-in: 47680a1e16 user: rkeene tags: trunk | |
21:41 | Added release engineering scripts check-in: d9d859322c user: rkeene tags: trunk | |
21:17 | Made error reporting less verbose check-in: 51935c7f5c user: rkeene tags: trunk | |
Changes
Added Makefile version [2d323bec5c].
Added build/makearch.info version [c64d975306].
Modified build/pre.sh
from [2833e223c2]
to [7d2c051364].
︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | + + + + + | set -x set -e cd "${ourdir}/.." rm -rf lib if [ "$1" = 'clean' -o "$1" = 'distclean' ]; then exit 0 fi "${TCLKIT:-tclkit}" "${ourdir}/teapot-client.kit" get . tcl tcl pki aes for platform in linux-ix86 linux-x86_64 macosx-ix86 macosx-x86_64 win32-ix86 win32-x86_64; do dl_platform="${platform}" vers='0.9.9' case "${platform}" in macosx-*) |
︙ |