From e996fac786e04fd2ba75a17ce2b5af712f349fb1 Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Sat, 9 May 2020 04:15:42 +0200 Subject: [PATCH] Fix TIC-80 compilation on emscripten --- libretro-buildbot-recipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index e2c19a60..eb1b08a0 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -400,7 +400,7 @@ build_libretro_generic_makefile() { eval "set -- ${EXTRAARGS} \${CORE_ARGS} -DCMAKE_VERBOSE_MAKEFILE=ON" echo "BUILD CMD: ${HELPER} ${CMAKE} $*" 2>&1 | tee -a "$LOGFILE" - echo "$@" .. | xargs ${CMAKE} 2>&1 | tee -a "$LOGFILE" + echo "$@" .. | xargs ${HELPER} ${CMAKE} 2>&1 | tee -a "$LOGFILE" echo "BUILD CMD: ${HELPER} ${CMAKE} --build . --target ${core}_libretro --config Release -- ${JOBS_FLAG}${JOBS}" 2>&1 | tee -a "$LOGFILE" ${HELPER} ${CMAKE} --build . --target ${core}_libretro --config Release -- ${JOBS_FLAG}${JOBS} 2>&1 | tee -a "$LOGFILE"