summaryrefslogtreecommitdiff
path: root/packaging/macosx/osx-app.sh
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-10-23 10:57:45 -0700
committerGerald Combs <gerald@wireshark.org>2015-10-01 16:26:25 +0000
commit7199fc7cabc0e88cf8113c26a6b685ff5df6cf2a (patch)
tree6166180f6ca5c33186a9b56f25e38c311d9763c4 /packaging/macosx/osx-app.sh
parentba50bf97acdd353745c9f10ec1d68e96ea3d745f (diff)
downloadwireshark-7199fc7cabc0e88cf8113c26a6b685ff5df6cf2a.tar.gz
OS X: Integrate CMake and osx-dmg.sh
Change-Id: Ide608f5e73ecd40c67a6b1c0e16f11233cd49c9d Reviewed-on: https://code.wireshark.org/review/10694 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'packaging/macosx/osx-app.sh')
-rwxr-xr-xpackaging/macosx/osx-app.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index 2eb964186a..7b77b5df2a 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -153,8 +153,6 @@ do
shift 1
done
-echo -e "\nCREATE WIRESHARK APP BUNDLE\n"
-
# Safety tests
if [ ! -e "$LIBPREFIX" ]; then
echo "Cannot find the directory containing the libraries: $LIBPREFIX" >&2
@@ -162,6 +160,8 @@ if [ ! -e "$LIBPREFIX" ]; then
fi
if [ "$create_bundle" = "true" ]; then
+ echo -e "\nCREATE WIRESHARK APP BUNDLE\n"
+
for binary in $wireshark_bin_name $binary_list ; do
if [ ! -x "$binary_path/$binary" ]; then
echo "Couldn't find $binary (or it's not executable)" >&2