mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
build script: disable ad-hoc code sign
it requires a different approach to sign application bundles
This commit is contained in:
parent
302a21f6b6
commit
f17e96b248
1 changed files with 3 additions and 3 deletions
6
build.py
6
build.py
|
@ -1776,9 +1776,9 @@ class Builder(object):
|
|||
|
||||
# TODO: check if ad-hoc code signing is really needed
|
||||
# See https://github.com/Homebrew/brew/commit/e945b1c42ab44feb1c6814f47cc833d76b1a921c
|
||||
if is_executable:
|
||||
args = ('codesign', '--sign', '-', dst_file)
|
||||
subprocess.check_call(args)
|
||||
# if is_executable:
|
||||
# args = ('codesign', '--sign', '-', dst_file)
|
||||
# subprocess.check_call(args)
|
||||
else:
|
||||
if not Builder._compare_files(src_sub_paths):
|
||||
print(f'WARNING: Source files for {dst_path + os.sep + src.name} don\'t match')
|
||||
|
|
Loading…
Reference in a new issue