Skip to content

Commit 4cdae44

Browse files
committed
Fixes to build signing
1 parent 5dc2a9f commit 4cdae44

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

bin/mac/build_dmg.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ xcrun SetFile -a E "$TMPPATH/${PRODUCT_DIR}/Documentation.html" # hide extension
203203
done
204204

205205

206-
codesign --timestamp --deep --force --options runtime --strict --sign 'Developer ID Application: Corona Labs Inc' "${LIBRARIES[@]}"
207-
codesign --timestamp --deep --force --options runtime --strict --sign 'Developer ID Application: Corona Labs Inc' --entitlements "$ENTITLEMENTS" "${EXECUTABLES[@]}"
206+
codesign --timestamp --deep --force --options runtime --strict --sign 'Apple Development: Scott Harrison (DGWT7C7959)' "${LIBRARIES[@]}"
207+
codesign --timestamp --deep --force --options runtime --strict --sign 'Apple Development: Scott Harrison (DGWT7C7959)' --entitlements "$ENTITLEMENTS" "${EXECUTABLES[@]}"
208208
)
209209
}
210210

@@ -289,6 +289,6 @@ rm -rf "$TMPPATH" # Remove tmp folder
289289
# "$TOOLSPATH/AddLicense" "$DSTBASE/$DMG_FILE" English "$SRCROOT/sdk/dmg/Corona_License.rtf"
290290
# hdiutil flatten "$DSTBASE/$DMG_FILE"
291291

292-
codesign --timestamp --deep --force --options runtime --strict --sign "Developer ID Application: Corona Labs Inc" "$DSTBASE/$DMG_FILE"
292+
codesign --timestamp --deep --force --options runtime --strict --sign "Apple Development: Scott Harrison (DGWT7C7959)" "$DSTBASE/$DMG_FILE"
293293
mkdir -p "$SRCROOT/output"
294294
cp "$DSTBASE/$DMG_FILE" "$SRCROOT/output"

platform/iphone/ratatouille.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5255,8 +5255,10 @@
52555255
CLANG_WARN_EMPTY_BODY = YES;
52565256
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
52575257
CODE_SIGN_IDENTITY = "Apple Development";
5258-
CODE_SIGN_STYLE = Automatic;
5259-
DEVELOPMENT_TEAM = A6QFRGXX8S;
5258+
CODE_SIGN_STYLE = Manual;
5259+
DEVELOPMENT_TEAM = "";
5260+
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = A6QFRGXX8S;
5261+
"DEVELOPMENT_TEAM[sdk=macosx*]" = A6QFRGXX8S;
52605262
GCC_DYNAMIC_NO_PIC = NO;
52615263
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
52625264
GCC_PRECOMPILE_PREFIX_HEADER = YES;

platform/mac/car.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
isa = XCBuildConfiguration;
213213
buildSettings = {
214214
ALWAYS_SEARCH_USER_PATHS = NO;
215-
CODE_SIGN_IDENTITY = "Developer ID Application: Corona Labs Inc";
215+
CODE_SIGN_IDENTITY = "Apple Development: Scott Harrison (DGWT7C7959)";
216216
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
217217
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
218218
"DEVELOPMENT_TEAM[sdk=macosx*]" = A6QFRGXX8S;

platform/mac/lua.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@
12001200
CLANG_WARN_SUSPICIOUS_MOVE = YES;
12011201
CLANG_WARN_UNREACHABLE_CODE = YES;
12021202
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1203-
CODE_SIGN_IDENTITY = "Developer ID Application: Corona Labs Inc";
1203+
CODE_SIGN_IDENTITY = "Apple Development: Scott Harrison (DGWT7C7959)";
12041204
ENABLE_STRICT_OBJC_MSGSEND = YES;
12051205
GCC_C_LANGUAGE_STANDARD = gnu99;
12061206
GCC_NO_COMMON_BLOCKS = YES;

0 commit comments

Comments
 (0)