mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
bd8d2bcf61
Sponsored by: Absolight
12 lines
267 B
Plaintext
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.
|