Quick iOS fix

This commit is contained in:
T. Joseph Carter 2015-02-20 23:31:40 -08:00
parent 5c417dcd92
commit e43cbb1ecb
2 changed files with 2 additions and 3 deletions

View File

@ -463,7 +463,7 @@ build_libretro_mame_modern() {
echo "cd \"$build_dir\""
cd "$build_dir"
if [ "$IOS" ]; then
if [ -n "$IOS" ]; then
if [ -z "$NOCLEAN" ]; then
echo "$MAKE -f Makefile.libretro \"TARGET=$2\" \"PARTIAL=$3\" platform=\"$FORMAT_COMPILER_TARGET\" CC=\"$CC\" CXX=\"$CXX\" \"-j$JOBS\" clean"
$MAKE -f Makefile.libretro "TARGET=$2" "PARTIAL=$3" platform="$FORMAT_COMPILER_TARGET" CC="$CC" CXX="$CXX" "-j$JOBS" clean || die 'Failed to clean MAME'

View File

@ -16,5 +16,4 @@ fi
# The iOS build rules have all been moved to libretro-build.sh
platform=ios
${BASE_DIR}/libretro-build.sh $@
platform=ios ${BASE_DIR}/libretro-build.sh $@