Differences From Artifact [b0d5bd6980]:
- File server/buildpkgs/common.sh — part of check-in [373a97d833] at 2014-05-19 03:29:30 on branch trunk — Fixed bug in setting up to link against Tcl 8.4 (user: rkeene, size: 2415) [annotate] [blame] [check-ins using]
To Artifact [1464904b80]:
- File server/buildpkgs/common.sh — part of check-in [ba02ddd48a] at 2014-06-21 22:06:40 on branch trunk — Updated tcc4tcl to rely on Tcl 8.5 or newer (user: rkeene, size: 2429) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
| 8 9 10 11 12 13 14 | 
		if [ ! -f "${envfile}" ]; then
			continue
		fi
		source "${envfile}"
 | | > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 
		if [ ! -f "${envfile}" ]; then
			continue
		fi
		source "${envfile}"
		return 0
	done
	return 1
}
function setup_tcl85 () {
	setup_tcl 8.5 8.4
}
function setup_tcl84 () {
 | 
| ︙ | ︙ |