diff options
author | Phil Pennock <pdp@exim.org> | 2017-02-02 16:02:40 -0500 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2017-02-02 16:02:40 -0500 |
commit | f6ef9370d8ad193be6b0203aa85d52b40779242d (patch) | |
tree | 2e0c83691f40743e216d3339364ba1dc09a44f6f /src/OS | |
parent | 91ef504cad49dd5c710f53816306a935b0ecc29e (diff) |
FreeBSD: Perl no longer in /usr/bin from Ports
FreeBSD Ports by policy no longer allows symlinks in /usr/bin for things
like Perl, so we have to look in /usr/local/bin for it instead.
Diffstat (limited to 'src/OS')
-rw-r--r-- | src/OS/Makefile-FreeBSD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/OS/Makefile-FreeBSD b/src/OS/Makefile-FreeBSD index 92d349d33..7c6c06487 100644 --- a/src/OS/Makefile-FreeBSD +++ b/src/OS/Makefile-FreeBSD @@ -6,6 +6,10 @@ CHOWN_COMMAND=/usr/sbin/chown STRIP_COMMAND=/usr/bin/strip CHMOD_COMMAND=/bin/chmod +# FreeBSD Ports no longer insert compatibility symlinks into /usr/bin for +# scripting languages which traditionally have had them. +PERL_COMMAND=/usr/local/bin/perl + HAVE_SA_LEN=YES # crypt() is in a separate library |