From a0497ac50e435908d0d7018324ac3654439a3dc2 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 1 Oct 2014 20:50:18 +0200 Subject: [PATCH] Update apple/script/build --- apple/script/build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apple/script/build b/apple/script/build index a5aa9abfa2..5216730c92 100755 --- a/apple/script/build +++ b/apple/script/build @@ -4,7 +4,7 @@ set -e . script/build.config -PROJECT_NAME="RetroArch_iOS.xcodeproj" +PROJECT_NAME="ios/RetroArch_iOS.xcodeproj" xcodebuild clean -project $PROJECT_NAME rm -rf build @@ -19,7 +19,7 @@ if [ -z "$NOCODESIGN" ] ; then xcodebuild -verbose -sdk iphoneos -configuration Release CODE_SIGN_IDENTITY="${CODE_SIGN_IDENTITY}" PROVISIONING_PROFILE="$PROVISION_UUID" -project $PROJECT_NAME echo "CODESIGNING DYNAMIC LIBRARIES AND BUILDING IPA" - codesign -fs "$CODE_SIGN_IDENTITY" $BUILD_PATH/RetroArch.app/iOS/modules/*.dylib + codesign -fs "$CODE_SIGN_IDENTITY" $BUILD_PATH/RetroArch.app/modules/*.dylib xcrun -sdk iphoneos PackageApplication "$BUILD_PATH/RetroArch.app" -o "$BUILD_PATH/RetroArch.ipa" --sign "$CODE_SIGN_IDENTITY" --embed "$BUILD_PATH/RetroArch.app/embedded.mobileprovision" else