p4raw-id: //depot/perl@25711
Revision history for Perl distribution PathTools.
+3.12 Mon Oct 3 22:09:12 CDT 2005
+
+ - Fixed a testing error on OS/2 in which a drive letter for the root
+ directory was confusing things. [Ilya Zakharevich]
+
+ - Integrated a patch from bleadperl for fixing path() on
+ Win32. [Gisle Aas]
+
3.11 Sat Aug 27 20:12:55 CDT 2005
- Fixed a couple of typos in the documentation for
SKIP: {
my $file;
{
- my $root = File::Spec->rootdir;
+ my $root = Cwd::abs_path(File::Spec->rootdir); # Add drive letter?
local *FH;
opendir FH, $root or skip("Can't opendir($root): $!", 2+$EXTRA_ABSPATH_TESTS);
($file) = grep {-f $_ and not -l $_} map File::Spec->catfile($root, $_), readdir FH;
use strict;
use vars qw(@ISA $VERSION);
-$VERSION = '3.11';
+$VERSION = '3.12';
$VERSION = eval $VERSION;
my %module = (MacOS => 'Mac',
use vars qw(@ISA $VERSION);
require File::Spec::Unix;
-$VERSION = '1.5_01';
+$VERSION = '1.6';
@ISA = qw(File::Spec::Unix);