Revert "Use custom script to simulate “codesign --deep”"

This reverts commit 434917b1e9.
This commit is contained in:
Allan Odgaard
2014-02-10 13:48:58 +07:00
parent e197c48382
commit 8ff36f3402
2 changed files with 1 additions and 13 deletions

View File

@@ -909,7 +909,7 @@ rule run_application
description = Run $in
rule sign_executable
command = bin/sign_app "$identity" $in && touch $out
command = codesign --deep -fs "$identity" $in && touch $out
description = Sign $in
rule tbz_archive

View File

@@ -1,12 +0,0 @@
#!/bin/bash
identity=$1
app_path=$2
until codesign -fs "${identity}" "${app_path}"; do
for lib in "${app_path}"/Contents/{Frameworks/*.{framework,dylib},PlugIns/*.tmplugin}; do
codesign --timestamp=none -s "${identity}" "${lib}"
done
done
true