Differences From Artifact [ecd7e08462]:
- Executable file mk4tcl/build.sh — part of check-in [d860d314dd] at 2011-07-05 17:28:18 on branch trunk — Updated additional build scripts to not attempt download if "buildsrc" directory is being used (user: rkeene, size: 3708) [annotate] [blame] [check-ins using]
To Artifact [d61f1ae923]:
- Executable file mk4tcl/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: 3716) [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
|