Currently thepowdertoy shares the build directory for three
different android builds, aarch64, armv7 and x86. However the
recipes for these builds differ and thepowdertoy will constantly
rebuild when it finds the recipe file differs with the previous
build.
This can be avoid by appending the arch to the build directory and
this solution is already used by ppsspp in the same recipes.
This is probably not needed, but it is probably safer to make sure the
old files are removed instead of watching the core rebuild endlessly
when its not.
In libretro-buildbot-recipe.sh line 148:
if [ -z "${HELPER} ${MAKE}" ]; then
^-- SC2157: Argument to -z is always false due to literal strings.
In libretro-buildbot-recipe.sh line 348:
echo "CLEANUP CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 352:
echo "CLEANUP CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 372:
echo "BUILD CMD: ${CMAKE} $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 380:
echo "BUILD CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 388:
echo "BUILD CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 480:
echo "BUILD CMD: $@" 2>&1 | tee -a "$LOGFILE"
^-- SC2145: Argument mixes string and array. Use * or separate argument.
In libretro-buildbot-recipe.sh line 626:
if git config --file "$DIR/.gitmodules" --name-only --get-regexp path 2>&1 >/dev/null; then
^-- SC2069: The order of the 2>&1 and the redirect matters. The 2>&1 has to be last.
In libretro-buildbot-recipe.sh line 1018:
if [ -n ${CUSTOM_BUILD} ]; then
^-- SC2070: -n doesn't work with unquoted arguments. Quote or use [[ ]].
In libretro-buildbot-recipe.sh line 1045:
if [ -n ${CUSTOM_BUILD_DEBUG} ]; then
^-- SC2070: -n doesn't work with unquoted arguments. Quote or use [[ ]].