libretro-buildbot-recipe.sh: Build default cores without SINGLE_CORE.

This commit is contained in:
orbea 2017-12-23 11:14:37 -08:00
parent ebd0f5d1e1
commit a428e21f8e

View File

@ -573,7 +573,9 @@ while read line; do
ARGS="${ARGS# }"
ARGS="${ARGS%"${ARGS##*[![:space:]]}"}"
if [ "$SINGLE_CORE" ] && [ "$NAME" != "$SINGLE_CORE" ]; then
if [ -z "${SINGLE_CORE:-}" ]; then
CORE=""
elif [ "$NAME" != "$SINGLE_CORE" ]; then
continue
fi