Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Class-Inspector CPAN distribution.

Report information
The Basics
Id: 7034
Status: resolved
Worked: 10 min
Priority: 0/
Queue: Class-Inspector

People
Owner: adamk [...] cpan.org
Requestors: rrwo [...] cpan.org
Cc:
AdminCc:

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



Subject: Patch to fix non-Unix (Windows) issues
Patch so that the module works on Windows (and other non-Unix environs). Also remove warnings on Windows.
20c20 < $VERSION = '1.05_01'; $VERSION = eval $VERSION; --- > $VERSION = 1.05; 303,306c303,305 < < my ($vol, $dir, $file) = File::Spec->catdir( $inc_name ); < $dir = File::Spec->catdir( File::Spec->splitdir( $dir || "" ) ); < File::Spec->catpath( $vol, $dir, $file || "" ); --- > my ($vol, $dir, $file) = File::Spec->catdir; > $dir = File::Spec->catdir( File::Spec->splitdir( $dir ) ); > File::Spec->catpath( $vol, $dir, $file );