HACK: pinfo->private_data points to smb_info again
[wireshark-wip.git] / packaging / macosx / Scripts / cli-postinstall.sh
blobf83cf4faac8f0de7f28d72acf04b5ca974e87d4c
1 #!/bin/sh
3 CLI_PATH="$2"
4 BINARIES="
5 capinfos
6 dftest
7 dumpcap
8 editcap
9 mergecap
10 randpkt
11 rawshark
12 text2pcap
13 tshark
16 cd "$CLI_PATH"
18 chmod 755 wireshark
19 chown root:wheel wireshark
21 for BIN in $BINARIES ; do
22 rm -f ./"$BIN"
23 ln -sn ./wireshark "$BIN"
24 done