in reply to cpanm --sudo installs to /root/perl5 instead of /usr
That should give you a listing of where perl wants various things to be installed. (Don't be worried if some of the keys are unset.)use strict; use warnings; use Config; for(keys(%Config)) { print "$_ : $Config{$_}\n" if $_ =~ /install/i; }
|
|---|