aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/macosx/osx-app.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/macosx/osx-app.sh')
-rwxr-xr-xpackaging/macosx/osx-app.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index be6d1fc7e0..1f82c96018 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -38,9 +38,6 @@
strip=false
binary_path="/tmp/inst/bin"
plist="./Info.plist"
-util_dir="./Utilities"
-cli_dir="$util_dir/Command Line"
-chmodbpf_dir="$util_dir/ChmodBPF"
exclude_prefixes="/System/|/Library/|/usr/lib/|/usr/X11/|/opt/X11/|@rpath|@executable_path"
@@ -225,8 +222,6 @@ mkdir -p "$pkgqtplugin"
mkdir -p "$pkgplugin"
mkdir -p "$pkgpython"
-mkdir -p "$cli_dir"
-
if [ "$ui_toolkit" = "qt" ] ; then
cp "$binary_path/$wireshark_bin_name" "$pkgexec/Wireshark"
else
@@ -248,9 +243,6 @@ fi
#----------------------------------------------------------
echo -e "\nFilling app bundle and utility directory...\n"
-# CLI wrapper
-cp -v utility-launcher "$cli_dir/wireshark"
-
# Wireshark executables
if [ "$ui_toolkit" = "gtk" ] ; then
for binary in $binary_list wireshark ; do
@@ -262,7 +254,6 @@ if [ "$ui_toolkit" = "gtk" ] ; then
if [ "$binary" != "wireshark" ] ; then
ln -sv ./wireshark "$pkgbin/$binary"
- ln -sv ./wireshark "$cli_dir/$binary"
fi
done
elif [ "$ui_toolkit" = "qt" ] ; then
@@ -273,11 +264,6 @@ elif [ "$ui_toolkit" = "qt" ] ; then
done
fi
-# ChmodBPF
-mkdir -p "$chmodbpf_dir"
-cp -v ChmodBPF/* "$chmodbpf_dir"
-chmod -R g-w "$chmodbpf_dir"
-
# The rest of the Wireshark installation (we handled bin above)
rsync -av \
--exclude bin/ \