Subject: | Wrong prerequisite for MSWin32 |
Hello Tim,
Version 1.612 adds prerequisite for Windows builds:
( $^O eq 'MSWin32' ? ( 'PathTools' => 3.31, ) : () ),
which is wrong, there's no 'PathTools' _module_ on CPAN (it's a
distribution name). You should change it to File::Spec or File::Spec::Win32:
( $^O eq 'MSWin32' ? ( 'File::Spec' => 3.31, ) : () ),
--
Serguei Trouchelle