From 6559245fa223cbc1e851c3c3118cd71a9f5d207f Mon Sep 17 00:00:00 2001 From: radius Date: Sun, 4 Jun 2017 19:58:29 -0500 Subject: [PATCH] allow overriding ABIS --- libretro-buildbot-recipe.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index dce0da09..71b2f516 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -95,11 +95,13 @@ if [ "${CORE_JOB}" == "YES" ]; then . $WORK/libretro-config.sh - -if [ -z "$ABI_OVERRIDE" ]; then - TARGET_ABIS = $ABI_OVERRIDE - export TARGET_ABIS = $ABI_OVERRIDE +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 + # ----- create dirs ----- SCRIPT=$(read_link "$0") echo "SCRIPT: $SCRIPT"