summaryrefslogtreecommitdiff
path: root/packaging/macosx/osx-app.sh
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-11-10 01:31:25 +0000
committerGerald Combs <gerald@wireshark.org>2013-11-10 01:31:25 +0000
commit04a7231d917b7f5fe646f2485506e6292870d365 (patch)
tree6c8018fcdf471e853b66082e09dbe9c13caf0c5e /packaging/macosx/osx-app.sh
parent48c5a9ae37872b1c54087a2af0d29876c0ff654c (diff)
downloadwireshark-04a7231d917b7f5fe646f2485506e6292870d365.tar.gz
More packaging updates.
Specify "Application" or "Installer" code signing identities as needed. Switch back to productbuild for the package. That seems to be the correct utility to use. Give the package an ID. Package signing is still broken but this appears to be closer to being correct. svn path=/trunk/; revision=53211
Diffstat (limited to 'packaging/macosx/osx-app.sh')
-rwxr-xr-xpackaging/macosx/osx-app.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index 0336fc63d6..4f0d63ba84 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -592,7 +592,7 @@ else
fi
codesign_file () {
- codesign --sign "$CODE_SIGN_IDENTITY" --verbose "$1"
+ codesign --sign "Developer ID Application: $CODE_SIGN_IDENTITY" --verbose "$1"
codesign --verify --verbose "$1" || exit 1
spctl --assess --type execute "$1" || exit 1
}