summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-01-04 01:29:41 -0800
committerGuy Harris <guy@alum.mit.edu>2017-01-04 09:30:43 +0000
commit0aba97a938832f7b9ffe6ec6531cc41b2d96f998 (patch)
treeacb9965f23b8a02f70fb8b0d908e951af6d89428 /packaging
parent880580c252f722c993585670ce003dd8a1f95757 (diff)
downloadwireshark-0aba97a938832f7b9ffe6ec6531cc41b2d96f998.tar.gz
Oops, source and target are the other way around.
Bug: 13270 Change-Id: Ibeddb435acca298c90f2d6b9c0228e8a9a747b38 Reviewed-on: https://code.wireshark.org/review/19534 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/Scripts/wireshark-postinstall.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/macosx/Scripts/wireshark-postinstall.sh b/packaging/macosx/Scripts/wireshark-postinstall.sh
index 2e1d616361..96ed64d89b 100755
--- a/packaging/macosx/Scripts/wireshark-postinstall.sh
+++ b/packaging/macosx/Scripts/wireshark-postinstall.sh
@@ -31,9 +31,9 @@ fi
for i in capinfos dftest dumpcap editcap mergecap randpkt rawshark \
tshark text2pcap
do
- ln -s "$BIN_PATH/$i" ../../MacOS/"$i"
+ ln -s ../../MacOS/"$i" "$BIN_PATH/$i"
done
-ln -s "$BIN_PATH/wireshark" ../../MacOS/Wireshark
+ln -s ../../MacOS/Wireshark "$BIN_PATH/wireshark"
# Setting PATH
# if /etc/paths.d/Wireshark already exists we overwrite it.