Perl update question

The path to perl seemed changed from /usr/bin/perl to /usr/local/bin/perl. Some scripts don't work. I can't change every she-bang to the right path.
But I am unsecure, with link I should set. The are three possibilites:
/usr/bin/perl
/usr/bin/perl5
or
directrly to
/usr/bin/perl5-5.20
 
Was a to less exact. Some scripts only work if I change the she-bang line to /usr/local/bin/perl - and that is not logical. I don't how many script are problematic and if I should set a link.
 
This does not work in perl5.20 anymore.
Have to use instead:
Code:
#!/usr/local/bin/perl

Also /usr/local/bin/cpanp disappeared.

Works fine for me with
Code:
#!/usr/bin/env perl
and perl version 5.20. You sure you have /usr/local/bin on your $PATH ?
 
All ports? I rely on /etc/ssl/cert.pem symlink CA-bundle makes.

Can you test if your applications continue to work without that symlink? I do remember a discussion on the mailing lists that the base system OpenSSL would use the certificate bundle from ports if installed without creating the symlink in /etc/ssl.
 
Yes, with configuration pointed to new ca file location. But it would be surprise if symlink just vanished after port upgrade, I noticed this thread by accident :)
 
Back
Top