summaryrefslogtreecommitdiff
path: root/xmake/rules/xcode/bundle/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-09-19 23:51:40 +0800
committerGitHub <[email protected]>2025-09-19 23:51:40 +0800
commitca784dc5ed3be5a75e787c9711da8fdf619df619 (patch)
tree20e9df17f1446788597ae692cebbee31db8700d9 /xmake/rules/xcode/bundle/xmake.lua
parent4ca5b7977c312b8e87336c4392d35885b863df48 (diff)
parent286b5301449d1cd26c07c05d37d39fe424e678c0 (diff)
Merge pull request #6832 from xmake-io/sign
optimize codesign
Diffstat (limited to 'xmake/rules/xcode/bundle/xmake.lua')
-rw-r--r--xmake/rules/xcode/bundle/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/xcode/bundle/xmake.lua b/xmake/rules/xcode/bundle/xmake.lua
index 9d697e3cf..bb3bed28f 100644
--- a/xmake/rules/xcode/bundle/xmake.lua
+++ b/xmake/rules/xcode/bundle/xmake.lua
@@ -103,7 +103,7 @@ rule("xcode.bundle")
end
-- do codesign
- local codesign_identity = target:values("xcode.codesign_identity") or get_config("xcode_codesign_identity")
+ local codesign_identity = target:values("xcode.codesign_identity") or codesign.xcode_codesign_identity()
if target:is_plat("macosx") or (target:is_plat("iphoneos") and target:is_arch("x86_64", "i386")) then
codesign_identity = nil
end