Overview
Comment: | Fixed bug in setting up to link against Tcl 8.4 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
373a97d8333b1bb1bae02263a8e2fcd4 |
User & Date: | rkeene on 2014-05-19 03:29:30 |
Other Links: | manifest | tags |
Context
2014-05-19
| ||
03:29 | Removed extra whitespace check-in: 0d0e6831fe user: rkeene tags: trunk | |
03:29 | Fixed bug in setting up to link against Tcl 8.4 check-in: 373a97d833 user: rkeene tags: trunk | |
03:29 | Tidied up some things check-in: 9357d3709b user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/common.sh from [0d787c6d5e] to [b0d5bd6980].
1 2 3 4 5 6 | #! /bin/bash function setup_tcl () { local vers envfile for vers in "$@"; do | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #! /bin/bash function setup_tcl () { local vers envfile for vers in "$@"; do envfile="${PROJROOTDIR}/platform.magic.env-${vers}" if [ ! -f "${envfile}" ]; then continue fi source "${envfile}" |
︙ | ︙ |