mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 20:06:29 -04:00
11 lines
267 B
Text
11 lines
267 B
Text
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.
|