Differences From Artifact [4268eb0491]:
- Executable file tcl/build.sh — part of check-in [fd32e55ed8] at 2011-09-14 18:25:24 on branch trunk — Updated to pass "wget" errors from Tcl build up to stderr (user: rkeene, size: 7326) [annotate] [blame] [check-ins using]
To Artifact [e5d135d2c7]:
- Executable file
tcl/build.sh
— part of check-in
[a6a6c489dc]
at
2011-10-03 15:31:35
on branch trunk
— Updated to try to build Tk in the same sub-directory as Tcl first
Updated Tcl to try to build in the macosx directory first on Darwin (user: rkeene, size: 7471) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
145 146 147 148 149 150 151 | ( . "${patchscript}" ) fi done | > > > > > | > > > > | 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | ( . "${patchscript}" ) fi done tryfirstdir='' if [ "$(uname -s)" = "Darwin" ]; then tryfirstdir='macosx' fi for dir in "${tryfirstdir}" unix win macosx __fail__; do if [ -z "${dir}" ]; then continue fi if [ "${dir}" = "__fail__" ]; then # If we haven't figured out how to build it, reject. exit 1 fi # Remove previous directory's "tclConfig.sh" if found |
︙ | ︙ |