1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00
freebsd-ports/lang/perl5.28/pkg-message
Mathieu Arnold fad77cc104 Add Perl 5.28.0-RC1.
Sponsored by:	Absolight
2018-05-21 13:50:39 +00:00

12 lines
267 B
Plaintext

The /usr/bin/perl symlink has been removed starting with Perl 5.20.
For shebangs, you should either use:
#!/usr/local/bin/perl
or
#!/usr/bin/env perl
The first one will only work if you have a /usr/local/bin/perl,
the second will work as long as perl is in PATH.