From c12eab976329bfcf3b793fc545383186e1b095b6 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 8 Jul 2020 09:04:30 +0200 Subject: [PATCH] Change the Camke scripts --- libretro-buildbot-recipe.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index eb1b08a0..db29ce21 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -402,7 +402,7 @@ build_libretro_generic_makefile() { echo "BUILD CMD: ${HELPER} ${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" + ${HELPER} ${CMAKE} --build . ${JOBS_FLAG}${JOBS} --target ${core}_libretro --config Release -- 2>&1 | tee -a "$LOGFILE" find . -mindepth 2 -name "${CORENAM}" -exec cp -f "{}" . \; elif [ "${COMMAND}" = "LEIRADEL" ]; then @@ -487,7 +487,7 @@ build_libretro_android_cmake() { echo "BUILD CMD: ${CMAKE} $*" 2>&1 | tee -a "$LOGFILE" echo "$@" ../.. | xargs ${CMAKE} 2>&1 | tee -a "$LOGFILE" - echo "BUILD CMD: ${CMAKE} --build . --target ${NAME}_libretro --config Release -- ${JOBS_FLAG}${JOBS}" 2>&1 | tee -a "$LOGFILE" + echo "BUILD CMD: ${CMAKE} --build . ${JOBS_FLAG}${JOBS} --target ${NAME}_libretro --config Release --" 2>&1 | tee -a "$LOGFILE" ${CMAKE} --build . --target ${NAME}_libretro --config Release -- ${JOBS_FLAG}${JOBS} 2>&1 | tee -a "$LOGFILE" COREPATH=$(find . -type f -name ${CORENAM})