Skip Menu |

This queue is for tickets about the DBI CPAN distribution.

Report information
The Basics
Id: 59568
Status: resolved
Priority: 0/
Queue: DBI

People
Owner: Nobody in particular
Requestors: stro [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.612
Fixed in: (no value)



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
Fixed for next release (soon). Thanks!