Overview
Comment: | Added syntax for specifying a seperate Fossil tag for Tk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 896a0f97017bd68746807a57c851a7bf0f1320bb |
User & Date: | rkeene on 2012-02-24 23:55:29 |
Other Links: | manifest | tags |
Context
2012-05-06
| ||
20:26 | Updated to override site-local autoconf brokenness on some 64-bit systems check-in: f4d5d0f507 user: rkeene tags: trunk | |
2012-02-24
| ||
23:55 | Added syntax for specifying a seperate Fossil tag for Tk check-in: 896a0f9701 user: rkeene tags: trunk | |
10:10 | Updated to exclude ".new" files from being processed check-in: 8cf1b9c2d8 user: rkeene tags: trunk | |
Changes
Modified tcl/build.sh from [584ff7bf52] to [5770c0fd3d].
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^cvs_//g') if [ "${FOSSILTAG}" = "HEAD" ]; then FOSSILTAG="trunk" fi elif echo "${TCLVERS}" | grep '^fossil_' >/dev/null; then use_fossil='1' FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^fossil_//g') fi export FOSSILTAG if [ -d 'buildsrc' ]; then # Override here to avoid downloading tarball from Fossil if we # have a particular tree already available. use_fossil='0' |
| |
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^cvs_//g')
if [ "${FOSSILTAG}" = "HEAD" ]; then
FOSSILTAG="trunk"
fi
elif echo "${TCLVERS}" | grep '^fossil_' >/dev/null; then
use_fossil='1'
FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^fossil_//g;s/_tk=.*$//g')
fi
export FOSSILTAG
if [ -d 'buildsrc' ]; then
# Override here to avoid downloading tarball from Fossil if we
# have a particular tree already available.
use_fossil='0'
|
Modified tk/build.sh from [8f91e493d3] to [7c1e6640bc].
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^cvs_//g') if [ "${FOSSILTAG}" = "HEAD" ]; then FOSSILTAG="trunk" fi elif echo "${TCLVERS}" | grep '^fossil_' >/dev/null; then use_fossil='1' FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^fossil_//g') fi if [ -d 'buildsrc' ]; then # Override here to avoid downloading tarball from Fossil if we # have a particular tree already available. use_fossil='0' fi |
> > > | > |
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^cvs_//g') if [ "${FOSSILTAG}" = "HEAD" ]; then FOSSILTAG="trunk" fi elif echo "${TCLVERS}" | grep '^fossil_' >/dev/null; then use_fossil='1' if echo "${TCLVERS}" | grep '^fossil_.*_tk=' >/dev/null; then FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^fossil_.*_tk=//g') else FOSSILTAG=$(echo "${TCLVERS}" | sed 's/^fossil_//g') fi fi if [ -d 'buildsrc' ]; then # Override here to avoid downloading tarball from Fossil if we # have a particular tree already available. use_fossil='0' fi |