summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-06-06 12:14:55 -0700
committerGerald Combs <gerald@wireshark.org>2014-06-06 19:24:56 +0000
commit5741a40e8931da0e3de00b796fde8cc731fe69b3 (patch)
treeee05ca32eb192b85b06e54cb3c1a18e7c8843043 /packaging
parent51ef489468f614f8c10aee15dce09c110134caf3 (diff)
downloadwireshark-5741a40e8931da0e3de00b796fde8cc731fe69b3.tar.gz
Try to fix OS X GTK+ app creation.
Change-Id: I81683968ee68da4826dd703bd38c233a72b2083d Reviewed-on: https://code.wireshark.org/review/2006 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index be6d1fc7e0..49ff904324 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -605,9 +605,11 @@ if [ -n "$CODE_SIGN_IDENTITY" ] ; then
codesign_file "$binary"
done
echo "Signing frameworks"
- for framework in $pkglib/*.framework/Versions/*/* ; do
- codesign_file "$framework"
- done
+ if [ "$ui_toolkit" = "qt" ] ; then
+ for framework in $pkglib/*.framework/Versions/*/* ; do
+ codesign_file "$framework"
+ done
+ fi
echo "Signing libraries"
for library in $pkglib/*.dylib ; do
codesign_file "$library"