From fd56b52549c51dbb56ee1e9afa8b5c17dd63b7ce Mon Sep 17 00:00:00 2001 From: radius Date: Sun, 4 Jun 2017 20:03:12 -0500 Subject: [PATCH] allow overriding ABIS --- libretro-buildbot-recipe.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index 71b2f516..2d73b457 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -95,12 +95,13 @@ if [ "${CORE_JOB}" == "YES" ]; then . $WORK/libretro-config.sh -echo ABIS-pre: $TARGET_ABIS -if [ -z "${ABI_OVERRIDE}" ]; then - TARGET_ABIS = ${ABI_OVERRIDE} - export TARGET_ABIS = ${ABI_OVERRIDE} -fi -echo ABIS-post: $TARGET_ABIS + echo ABIS-pre: $TARGET_ABIS + echo OVERRIDE: ${ABI_OVERRIDE} + if [ -z "${ABI_OVERRIDE}" ]; then + TARGET_ABIS = ${ABI_OVERRIDE} + export TARGET_ABIS = ${ABI_OVERRIDE} + fi + echo ABIS-post: $TARGET_ABIS # ----- create dirs ----- SCRIPT=$(read_link "$0")