Try to fix this one last time

This commit is contained in:
twinaphex 2020-07-10 11:48:08 +02:00
parent 5770c67166
commit 86898c4b33

View File

@ -401,8 +401,8 @@ 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 ${HELPER} ${CMAKE} 2>&1 | tee -a "$LOGFILE"
echo "BUILD CMD: ${HELPER} ${CMAKE} --build . ${JOBS_FLAG}${JOBS} --target ${core}_libretro --config Release -- " 2>&1 | tee -a "$LOGFILE"
${HELPER} ${CMAKE} --build . ${JOBS_FLAG}${JOBS} --target ${core}_libretro --config Release -- 2>&1 | tee -a "$LOGFILE"
echo "BUILD CMD: ${HELPER} ${CMAKE} --build . ${JOBS_FLAG} ${JOBS} --target ${core}_libretro --config Release -- " 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,8 +487,8 @@ 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 . ${JOBS_FLAG}${JOBS} --target ${NAME}_libretro --config Release --" 2>&1 | tee -a "$LOGFILE"
${CMAKE} --build . ${JOBS_FLAG}${JOBS} --target ${NAME}_libretro --config Release -- 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 . ${JOBS_FLAG} ${JOBS} --target ${NAME}_libretro --config Release -- 2>&1 | tee -a "$LOGFILE"
COREPATH=$(find . -type f -name ${CORENAM})
if [ -n "${COREPATH}" ]; then