Overview
Comment: | Updated to tcc4tcl 0.11 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
eab55dd43cc2f754897f0c766aff36b5 |
User & Date: | rkeene on 2014-05-19 04:20:50 |
Other Links: | manifest | tags |
Context
2014-05-19
| ||
04:55 | Updated to reflect 8.6.x builds are threaded by default check-in: b4fe3a0158 user: rkeene tags: trunk | |
04:20 | Updated to tcc4tcl 0.11 check-in: eab55dd43c user: rkeene tags: trunk | |
04:19 | Removed extraneous debugging information in last commit check-in: c401b28269 user: rkeene tags: trunk | |
Changes
Modified tcc4tcl/build.sh from [3411ce2c97] to [b26578a863].
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then echo 'ERROR: The TCLVERS environment variable is not set' >&2 exit 1 fi | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then echo 'ERROR: The TCLVERS environment variable is not set' >&2 exit 1 fi TCC4TCLVERS="0.11" SRC="src/tcc4tcl-${TCC4TCLVERS}.tar.gz" SRCURL="http://rkeene.org/devel/tcc4tcl/tcc4tcl-${TCC4TCLVERS}.tar.gz" BUILDDIR="$(pwd)/build/tcc4tcl-${TCC4TCLVERS}" OUTDIR="$(pwd)/out" INSTDIR="$(pwd)/inst" PATCHDIR="$(pwd)/patches" export TCC4TCLVERS SRC SRCURL BUILDDIR OUTDIR INSTDIR PATCHDIR |
︙ | ︙ |