Overview
Comment: | Fixed specifying platforms as arguments |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | df5f7aac6cd13a4368b97e27fb0577dd1d35c1d0 |
User & Date: | rkeene on 2014-05-16 18:51:50 |
Other Links: | manifest | tags |
Context
2014-05-16
| ||
20:47 | Updated to compile correct directory most of the time check-in: a1e573a7a5 user: rkeene tags: trunk | |
18:51 | Fixed specifying platforms as arguments check-in: df5f7aac6c user: rkeene tags: trunk | |
18:25 | Updated ignores check-in: c429aa02e2 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/build-all-platforms.sh from [ad0be0099e] to [b260f64dbe].
17 17 arm-android9-linux-androideabi@linux-unknown-arm 18 18 i586-mingw32msvc@win32-ix86 19 19 x86_64-w64-mingw32@win32-x86_64 20 20 x86_64-redhat5-linux@linux-glibc2.5-x86_64 21 21 powerpc-ibm-aix5.3.0.0@aix-powerpc 22 22 ) 23 23 else 24 - platforms="$@" 24 + platforms=("$@") 25 25 fi 26 26 27 27 for platform in "${platforms[@]}"; do 28 28 echo " * Building for ${platform}" 29 29 cc_platform="$(echo "${platform}" | cut -f 1 -d '@')" 30 30 tcl_platform="$(echo "${platform}" | cut -f 2 -d '@')" 31 31 opts=''