From 8da7c091296136a7ae0f3737e037dd9e8f8526d3 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Sat, 25 Mar 2017 20:03:02 +0100 Subject: [PATCH] try to fix a MINGW build error. --- libretro-buildbot-recipe.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index 9b4facf1..34e139e2 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -161,7 +161,7 @@ if [ "${CORE_JOB}" == "YES" ]; then fi if [ "${CC}" ] && [ "${CXX}" ]; then - COMPILER="CC="\""${CC}"\"" CXX="\""${CXX}"\""" + COMPILER="CC='${CC}' CXX='${CXX}'" else COMPILER="" fi @@ -596,7 +596,6 @@ build_libretro_bsnes() { echo -------------------------------------------------- 2>&1 | tee -a $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_${NAME}_${PROFILE}_${PLATFORM}.log if [ "${PROFILE}" = "cpp98" ]; then - echo "BUILD CMD: ${HELPER} ${MAKE} platform="${PLATFORM}" "${COMPILER}" "-j${JOBS}" 2>&1 | tee -a $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_${NAME}_${PROFILE}_${PLATFORM}.log ${HELPER} ${MAKE} platform="${PLATFORM}" "${COMPILER}" "-j${JOBS}" 2>&1 | tee -a $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_${NAME}_${PROFILE}_${PLATFORM}.log elif [ "${PROFILE}" = "bnes" ]; then echo "BUILD CMD: ${HELPER} ${MAKE} -f Makefile ${COMPILER} "-j${JOBS}" compiler=${BSNESCOMPILER}" platform=${FORMAT_COMPILER_TARGET} 2>&1 | tee -a $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_${NAME}_${PROFILE}_${PLATFORM}.log