From 81398a8b378ee90f5093da7c771d2596c21f931f Mon Sep 17 00:00:00 2001 From: orbea Date: Sat, 6 Jan 2018 07:31:37 -0800 Subject: [PATCH] libretro-buildbot-recipe.sh: Fix citra builds for windows (Again) During one of my clean up efforts I neglected to make sure the quotes around '-G "MYSYS Makefiles"' were not evaluated. Escaping the variable containing this option works, but should be noted it only works with bash. Since this script is inherently a bash script that should be no problem. Fixes https://github.com/libretro/libretro-super/issues/675 --- 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 46aec248..7a035684 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -367,7 +367,7 @@ build_libretro_generic_makefile() { -DCMAKE_ANDROID_NDK=${NDK_ROOT}" fi - eval "set -- ${EXTRAARGS} ${CORE_ARGS}" + eval "set -- ${EXTRAARGS} \${CORE_ARGS}" echo "BUILD CMD: ${CMAKE} $@" 2>&1 | tee -a "$LOGFILE" echo "$@" .. | xargs ${CMAKE} 2>&1 | tee -a "$LOGFILE" echo "BUILD CMD: ${HELPER} ${MAKE} -f ${MAKEFILE} -j${JOBS}" 2>&1 | tee -a "$LOGFILE"