mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 20:14:22 +00:00
Merge pull request #83 from l3iggs/patch-2
add support for NOCLEAN in retroarch build
This commit is contained in:
commit
a61512f441
@ -120,7 +120,9 @@ build_retroarch()
|
||||
cd retroarch
|
||||
check_deps
|
||||
./configure $ENABLE_GLES $ENABLE_NEON
|
||||
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} CC="gcc ${RARCHCFLAGS}" $COMPILER -j$JOBS clean || die "Failed to clean RetroArch"
|
||||
if [ -z "${NOCLEAN}" ]; then
|
||||
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} CC="gcc ${RARCHCFLAGS}" $COMPILER -j$JOBS clean || die "Failed to clean RetroArch"
|
||||
fi
|
||||
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} CC="gcc ${RARCHCFLAGS}" $COMPILER -j$JOBS || die "Failed to build RetroArch"
|
||||
else
|
||||
echo "RetroArch not fetched, skipping ..."
|
||||
|
Loading…
Reference in New Issue
Block a user