aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-02-26 13:51:12 -0800
committerGuy Harris <guy@alum.mit.edu>2018-02-26 21:52:35 +0000
commit1c1498834d0bb14a1d53db5fd0b39acada71bf66 (patch)
treef7b2d8dc8271c0d5bb1baf41a870740e6d4d042c /packaging
parent7b3ce599ece41d9199965069488f00bf30edc4dd (diff)
Squelch some warning noise when dsymifying.
Change-Id: I1e6c05ce9d2f08abb7e3f86a95cc7b8f8af56ab2 Reviewed-on: https://code.wireshark.org/review/26124 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/packaging/macosx/osx-app.sh.in b/packaging/macosx/osx-app.sh.in
index fca38c4572..cea7640f2c 100755
--- a/packaging/macosx/osx-app.sh.in
+++ b/packaging/macosx/osx-app.sh.in
@@ -415,7 +415,11 @@ done
echo "Dsymifying libraries"
for library in $pkglib/*.dylib ; do
- dsymutil "$library"
+ #
+ # Squelch warnings, in case the .o files from building
+ # support libraries aren't around any more.
+ #
+ dsymutil "$library" | egrep -v 'unable to open object file'
done
echo "Dsymifying plugins"