Perl Module Tools v2.1.0 Released - Windows Fixes
It turns out there are several tools in the Perl Module Tools (pmtools) that need to execute other commands with the current Perl specified, like:
system "ls -l " . `$^X -S $Bin/pmpath $module`;
(note the additional "$^X").
As a side note, in Windows you may need to "use FindBin qw($Bin);" so your programs can actually find the Perl to run. (I had wondered if this use of FindBin was just cargo-cult programming carried over from old versions of Perl - now I know better.)
Leave a comment