From 4b8b14daee3d47371f9c1ff6186e94d8aae1e678 Mon Sep 17 00:00:00 2001 From: Jon Maddox Date: Tue, 26 Mar 2013 10:07:06 -0400 Subject: [PATCH] allow the ability to skip the fetching/cloning of the emu cores before building --- libretro-build-ios.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libretro-build-ios.sh b/libretro-build-ios.sh index b23d1c7a..a1fb9dbf 100755 --- a/libretro-build-ios.sh +++ b/libretro-build-ios.sh @@ -9,10 +9,11 @@ RARCH_DIST_DIR=$RARCH_DIR/ios/modules export IOSSDK=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/ -# clone/fetch the emulator core repos -cd $CORES_DIR -"$ROOT_DIR/libretro-fetch.sh" - +if ! $SKIPFETCH ; then + # clone/fetch the emulator core repos + cd $CORES_DIR + "$ROOT_DIR/libretro-fetch.sh" +fi MEDNAFEN_DIR_NAME=libretro-mednafen build_libretro_mednafen()