Differences From Artifact [cdaaafe15a]:
- Executable file tk/build.sh — part of check-in [fddc41b4b8] at 2014-05-20 22:58:57 on branch trunk — Updated to include global CFLAGS/LDFLAGS/CPPFLAGS/LIBS in addition to per-project settings (user: rkeene, size: 7492) [annotate] [blame] [check-ins using]
To Artifact [b4a36c92da]:
- Executable file tk/build.sh — part of check-in [2539bf269d] at 2014-05-27 13:44:15 on branch trunk — Updated to create a fake "xmkmf" when cross-compiling (user: rkeene, size: 7624) [annotate] [blame] [check-ins using]
| ︙ | |||
145 146 147 148 149 150 151 152 153 154 155 156 157 158 | 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | + + + + + + |
echo "Running patch script: ${patchscript}"
(
. "${patchscript}"
)
fi
done
# Allow wrapper programs to supplant real programs
if [ -d 'fake-bin' ]; then
PATH="$(pwd)/fake-bin:${PATH}"
export PATH
fi
for dir in "${TCLCONFIGDIRTAIL}" unix win macosx win64 __fail__; do
if [ -z "${dir}" ]; then
continue
fi
if [ "${dir}" = "__fail__" ]; then
|
| ︙ |