Assimilate Cwd 2.19
Nicholas Clark [Thu, 15 Jul 2004 16:28:03 +0000 (16:28 +0000)]
p4raw-id: //depot/perl@23118

ext/Cwd/Changes
ext/Cwd/t/cwd.t
lib/Cwd.pm

index 68d85ca..f6974b8 100644 (file)
@@ -1,5 +1,10 @@
 Revision history for Perl extension Cwd.
 
+2.19  Thu Jul 15 08:32:18 CDT 2004
+
+ - The abs_path($arg) fix from 2.18 didn't work for VMS, now it's
+   fixed there. [Craig Berry]
+
 2.18  Thu Jun 24 08:22:57 CDT 2004
 
  - Fixed a problem in which abs_path($arg) on some platforms could
index 8064346..52427e6 100644 (file)
@@ -3,7 +3,7 @@
 BEGIN {
     chdir 't' if -d 't';
     if ($ENV{PERL_CORE}) {
-       @INC = '../lib';
+        @INC = '../lib';
     }
 }
 use Cwd;
@@ -185,4 +185,3 @@ sub path_ends_with {
   my $bracketed_expect = quotemeta bracketed_form_path($expect);
   like( bracketed_form_path($dir), qr|$bracketed_expect$|i, (@_ ? shift : ()) );
 }
-
index 37fdcfa..b0dad20 100644 (file)
@@ -1,5 +1,5 @@
 package Cwd;
-$VERSION = $VERSION = '2.18';
+$VERSION = $VERSION = '2.19';
 
 =head1 NAME