aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-02-22 20:37:47 -0800
committerGuy Harris <guy@alum.mit.edu>2018-02-23 04:39:02 +0000
commit316b858d28092bb1c55ff50cfe68ae51f34425de (patch)
treeb0b3745d5d0479ebb472f85b4964110190e184d9
parent434d1c975979bd39f42a16622db4c94f04ab66ce (diff)
Fix stripping of binaries.
Instead of using the never-defined $binpath (undefined going back to at least Wireshark 1.0.0 - is it a leftover from the Inkscape version?), use $bundle_binary_list, to strip all the executables with strip -ur. (Not that we want to strip anything - we don't even want the debugging symbols stripped! - but for cleanliness.) Change-Id: I9c3520ffb418bf9dc206d3ccb55d347c208f3be2 Reviewed-on: https://code.wireshark.org/review/26033 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rwxr-xr-xpackaging/macosx/osx-app.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/macosx/osx-app.sh.in b/packaging/macosx/osx-app.sh.in
index c6c28fe6a7..a491bf8eed 100755
--- a/packaging/macosx/osx-app.sh.in
+++ b/packaging/macosx/osx-app.sh.in
@@ -201,7 +201,7 @@ chmod 755 "$pkglib"/*.dylib
if [ "$strip" = "true" ]; then
echo -e "\nStripping debugging symbols...\n"
strip -x "$pkglib"/*.dylib
- strip -ur "$binpath"
+ strip -ur "$bundle_binary_list"
fi
#