Differences From Artifact [ad199373ac]:
- File server/buildpkgs/common.sh — part of check-in [fac84a637c] at 2011-07-19 23:58:03 on branch trunk — Updated to include package version in output directory (user: rkeene, size: 2040) [annotate] [blame] [check-ins using]
To Artifact [d35eb59bb1]:
- File server/buildpkgs/common.sh — part of check-in [3e4cf5d7be] at 2011-07-25 13:52:44 on branch trunk — Updated TCC to build only on ix86/x86_64 platforms Fixed bugs in TCC 0.4 with patches and build.sh updates (user: rkeene, size: 2241) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
local platform
for platform in "$@"; do
if [ "${PLATFORM}" = "${platform}" ]; then
return 0
fi
done
rm -rf out
exit 0
}
function download () {
| > > > > > > > > > > > > > > | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
local platform
for platform in "$@"; do
if [ "${PLATFORM}" = "${platform}" ]; then
return 0
fi
done
rm -rf out
exit 0
}
function only_platforms_regexp () {
local platform_re
for platform_re in "$@"; do
if echo "${PLATFORM}" | grep -- "${platform_re}" >/dev/null; then
return 0
fi
done
rm -rf out
exit 0
}
function download () {
|
| ︙ | ︙ |