From 1513727e2b38800c694d1204cb454cc6fabc4937 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sun, 25 Jul 2021 18:29:57 +0300 Subject: build, qt: (Re-)sign package Starting with macOS 11 on Apple silicon, executables must be signed before they are allowed to run. --- contrib/macdeploy/macdeployqtplus | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'contrib/macdeploy') diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index b8f5705b41..0455a137f1 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -16,7 +16,7 @@ # along with this program. If not, see . # -import sys, re, os, shutil, stat, os.path +import sys, re, os, platform, shutil, stat, subprocess, os.path from argparse import ArgumentParser from ds_store import DSStore from mac_alias import Alias @@ -541,6 +541,9 @@ ds.close() # ------------------------------------------------ +if platform.system() == "Darwin": + subprocess.check_call(f"codesign --deep --force --sign - {target}", shell=True) + if config.dmg is not None: print("+ Preparing .dmg disk image +") -- cgit v1.2.3