Differences From Artifact [b1c6fc2088]:
- Executable file tcl/build.sh — part of check-in [e51ad4b533] at 2011-10-03 19:04:35 on branch trunk — Updated to not use broken pre-generated Makefiles (user: rkeene, size: 7551) [annotate] [blame] [check-ins using]
To Artifact [08c07cb4da]:
- Executable file tcl/build.sh — part of check-in [4e8d261d38] at 2012-02-01 07:56:32 on branch trunk — Updated to call "/usr/bin/env" to locate "bash" in case it is not in "/bin" (user: rkeene, size: 7559) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 |
#! /bin/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
|
| |
1 2 3 4 5 6 7 8 |
#! /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
|