Differences From 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]
To Artifact [d2befa5f72]:
- File server/buildpkgs/common.sh — part of check-in [b9edcbd4d2] at 2014-06-22 00:51:23 on branch trunk — Updated to not support multiarch Mac OS X builds in tcc4tcl (which won't actually work with it) (user: rkeene, size: 2631) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
fi
done
rm -rf out
exit 0
}
function download () {
local url file
file="$1"
url="$2"
| > > > > > > > > > > > > > > | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
fi
done
rm -rf out
exit 0
}
function not_platforms_regexp () {
local platform_re
for platform_re in "$@"; do
if echo "${PLATFORM}" | grep -- "${platform_re}" >/dev/null; then
rm -rf out
exit 0
fi
done
return 0
}
function download () {
local url file
file="$1"
url="$2"
|
| ︙ | ︙ |