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

David Fuhrmann git at videolan.org
Sat Jan 13 19:33:12 CET 2018


vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Sat Jan 13 19:31:36 2018 +0100| [74248abeede76c36aba6fd9fa8fb29422ce06aaf] | committer: David Fuhrmann

macOS build.sh: Strip more symbols

This should really strip all strippable symbols.

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

 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 68b1d2ea4d..d996e1f94d 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