allow overriding ABIS and fix nits
This commit is contained in:
parent
c015b8a9cb
commit
554563fd0f
|
@ -106,13 +106,13 @@ if [ "${CORE_JOB}" == "YES" ]; then
|
||||||
mkdir -v -p "$RARCH_DIST_DIR"
|
mkdir -v -p "$RARCH_DIST_DIR"
|
||||||
|
|
||||||
if [ "${PLATFORM}" = "android" ]; then
|
if [ "${PLATFORM}" = "android" ]; then
|
||||||
echo ABIS-pre: $TARGET_ABIS
|
if [ -n "$ABI_OVERRIDE" ]; then
|
||||||
echo OVERRIDE: ${ABI_OVERRIDE}
|
echo ABIS-pre: $TARGET_ABIS
|
||||||
if [ -z "${ABI_OVERRIDE}" ]; then
|
echo OVERRIDE: ${ABI_OVERRIDE}
|
||||||
TARGET_ABIS=${ABI_OVERRIDE}
|
TARGET_ABIS=${ABI_OVERRIDE}
|
||||||
export TARGET_ABIS=${ABI_OVERRIDE}
|
export TARGET_ABIS=${ABI_OVERRIDE}
|
||||||
|
echo ABIS-post: $TARGET_ABIS
|
||||||
fi
|
fi
|
||||||
echo ABIS-post: $TARGET_ABIS
|
|
||||||
IFS=' ' read -ra ABIS <<< "$TARGET_ABIS"
|
IFS=' ' read -ra ABIS <<< "$TARGET_ABIS"
|
||||||
for a in "${ABIS[@]}"; do
|
for a in "${ABIS[@]}"; do
|
||||||
echo $a
|
echo $a
|
||||||
|
|
Loading…
Reference in New Issue