[vlc-commits] macOS build.sh: Strip more symbols

David Fuhrmann git at videolan.org
Wed Jan 17 16:13:05 CET 2018


vlc/vlc-3.0 | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Sat Jan 13 19:31:36 2018 +0100| [9b1a7ea679bbc3e9fbd63af9c004a7c75154e669] | committer: Jean-Baptiste Kempf

macOS build.sh: Strip more symbols

This should really strip all strippable symbols.

(cherry picked from commit 74248abeede76c36aba6fd9fa8fb29422ce06aaf)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=9b1a7ea679bbc3e9fbd63af9c004a7c75154e669
---

 extras/package/macosx/build.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/extras/package/macosx/build.sh b/extras/package/macosx/build.sh
index 1184a88cb7..72c2320d73 100755
--- a/extras/package/macosx/build.sh
+++ b/extras/package/macosx/build.sh
@@ -287,11 +287,11 @@ if [ "$PACKAGETYPE" = "u" ]; then
     rm -rf VLC-debug.app
     cp -Rp VLC.app VLC-debug.app
 
-    find VLC.app/ -name "*.dylib" -exec strip -u -r {} \;
-    find VLC.app/ -type f -name "VLC" -exec strip -u -r {} \;
-    find VLC.app/ -type f -name "Sparkle" -exec strip -u -r {} \;
-    find VLC.app/ -type f -name "Growl" -exec strip -u -r {} \;
-    find VLC.app/ -type f -name "Breakpad" -exec strip -u -r {} \;
+    find VLC.app/ -name "*.dylib" -exec strip -x {} \;
+    find VLC.app/ -type f -name "VLC" -exec strip -x {} \;
+    find VLC.app/ -type f -name "Sparkle" -exec strip -x {} \;
+    find VLC.app/ -type f -name "Growl" -exec strip -x {} \;
+    find VLC.app/ -type f -name "Breakpad" -exec strip -x {} \;
 
     bin/vlc-cache-gen VLC.app/Contents/MacOS/plugins
 



More information about the vlc-commits mailing list