mirror of
https://github.com/libretro/libretro-super
synced 2024-12-29 09:22:43 +00:00
move ./configure into NOCLEAN if statement
Running `./configure` before `make` triggers a complete rebuild. I'd like to exert control over when a complete rebuild takes place. Moving ./configure into the NOCLEAN if statement allows for that.
This commit is contained in:
parent
785374ecb1
commit
6b6bc15262
@ -119,8 +119,9 @@ build_retroarch()
|
||||
echo "=== Building RetroArch ==="
|
||||
cd retroarch
|
||||
check_deps
|
||||
./configure $ENABLE_GLES $ENABLE_NEON
|
||||
|
||||
if [ -z "${NOCLEAN}" ]; then
|
||||
./configure $ENABLE_GLES $ENABLE_NEON
|
||||
${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"
|
||||
|
Loading…
Reference in New Issue
Block a user