From 2c74679a75626bd69c4d5598b5af11bfd1dc9397 Mon Sep 17 00:00:00 2001 From: Graham Bloice Date: Sat, 21 Nov 2015 23:29:18 +0000 Subject: Fix OSX 10.5 autotools package for missing sshdump Make sshdump addition to the package conditional depending on whether it is actually built. Change-Id: Ifeaa134fdb3dcd88e48ff0c796f0c21c804eba77 Reviewed-on: https://code.wireshark.org/review/12023 Reviewed-by: Graham Bloice --- packaging/macosx/osx-app.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'packaging/macosx') diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh index cf446ebd64..ecc312c4b6 100755 --- a/packaging/macosx/osx-app.sh +++ b/packaging/macosx/osx-app.sh @@ -60,8 +60,12 @@ binary_list=" text2pcap tshark extcap/androiddump - extcap/sshdump " + +if [ -x "extcap/sshdump" ]; then + binary_list="$binary_list extcap/sshdump" +fi + cs_binary_list= # Location for libraries (macosx-setup.sh defaults to whatever the -- cgit v1.2.1