[vlc-commits] macOS codesign: Do not explicitly sign resources

David Fuhrmann git at videolan.org
Wed Mar 20 19:22:38 CET 2019


vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Mon Mar 18 21:11:23 2019 +0100| [6a0bcd325de8728c7f3e331ca70c0ebcd448a673] | committer: David Fuhrmann

macOS codesign: Do not explicitly sign resources

Resource files or headers do not need to be explicitly signed.
Once the bundle itself is signed, all ressources are automatically
added to the manifest.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6a0bcd325de8728c7f3e331ca70c0ebcd448a673
---

 extras/package/macosx/codesign.sh | 24 ------------------------
 1 file changed, 24 deletions(-)

diff --git a/extras/package/macosx/codesign.sh b/extras/package/macosx/codesign.sh
index 2e4b2dc251..22f6cbb61a 100755
--- a/extras/package/macosx/codesign.sh
+++ b/extras/package/macosx/codesign.sh
@@ -115,30 +115,6 @@ if [ -e "VLC.app/Contents/Frameworks/Breakpad.framework" ]; then
     sign "VLC.app/Contents/Frameworks/Breakpad.framework/Versions/A"
 fi
 
-info "Signing the framework headers"
-for i in $(find VLC.app/Contents/Frameworks -type f -name "*.h" -exec echo {} \;)
-do
-    sign "$i"
-done
-
-info "Signing the framework strings"
-for i in $(find VLC.app/Contents/Frameworks -type f -name "*.strings" -exec echo {} \;)
-do
-    sign "$i"
-done
-
-info "Signing the framework plist files"
-for i in $(find VLC.app/Contents/Frameworks -type f -name "*.plist" -exec echo {} \;)
-do
-    sign "$i"
-done
-
-info "Signing the framework nib files"
-for i in $(find VLC.app/Contents/Frameworks -type f -name "*.nib" -exec echo {} \;)
-do
-    sign "$i"
-done
-
 info "Signing the modules"
 
 for i in $(find VLC.app/Contents/Frameworks/plugins -type f \( -name "*.dylib" -o -name "*.jar" \)  -exec echo {} \;)



More information about the vlc-commits mailing list