summaryrefslogtreecommitdiff
path: root/econtact
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2020-03-22 16:29:27 -0400
committerAaron M. Ucko <ucko@debian.org>2020-03-22 16:29:27 -0400
commitd621f5b6a7ac4449fb8891383da5eb289c7f10d5 (patch)
treec5b209b5969a25a673d08602d7d735b8f7c3b178 /econtact
parent63cee944cb3be2038988cb652c31d8d6e1b61b90 (diff)
New upstream version 12.3.20191024+ds
Diffstat (limited to 'econtact')
-rwxr-xr-xecontact6
1 files changed, 5 insertions, 1 deletions
diff --git a/econtact b/econtact
index 45019ad..f631425 100755
--- a/econtact
+++ b/econtact
@@ -1,4 +1,5 @@
#!/bin/sh
+PERL="perl"
dir=`dirname "$0"`
case "`uname -s`" in
CYGWIN_NT*)
@@ -7,5 +8,8 @@ case "`uname -s`" in
dir=`cygpath -w "$dir"`
fi
;;
+ Darwin )
+ PERL="/usr/bin/perl"
+ ;;
esac
-exec perl "$dir"/edirect.pl -contact "$@"
+exec "${PERL}" "$dir"/edirect.pl -contact "$@"