summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-07-15 16:38:38 +0000
committerNicholas Clark <nick@ccl4.org>2004-07-15 16:38:38 +0000
commita9f4c9b361dcb6c0bb21356b11575d89e2073913 (patch)
treeef194cad5772e341c6fb9f80cb4684e9aa554ce1
parent7892d5b6d6d616d3c0405e1ad2dc296a6a48f358 (diff)
downloadperl-a9f4c9b361dcb6c0bb21356b11575d89e2073913.tar.gz
Integrate:
[ 23118] Assimilate Cwd 2.19 p4raw-link: @23118 on //depot/perl: 7ada78df9739acac44e6c9a8f1e08c978571e2a0 p4raw-id: //depot/maint-5.8/perl@23119 p4raw-integrated: from //depot/perl@23110 'copy in' ext/Cwd/Changes (@22991..) ext/Cwd/t/cwd.t lib/Cwd.pm (@23029..)
-rw-r--r--ext/Cwd/Changes5
-rw-r--r--ext/Cwd/t/cwd.t3
-rw-r--r--lib/Cwd.pm2
3 files changed, 7 insertions, 3 deletions
diff --git a/ext/Cwd/Changes b/ext/Cwd/Changes
index 68d85ca748..f6974b8161 100644
--- a/ext/Cwd/Changes
+++ b/ext/Cwd/Changes
@@ -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
diff --git a/ext/Cwd/t/cwd.t b/ext/Cwd/t/cwd.t
index 8064346464..52427e648c 100644
--- a/ext/Cwd/t/cwd.t
+++ b/ext/Cwd/t/cwd.t
@@ -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 : ()) );
}
-
diff --git a/lib/Cwd.pm b/lib/Cwd.pm
index 37fdcfad5b..b0dad20e6a 100644
--- a/lib/Cwd.pm
+++ b/lib/Cwd.pm
@@ -1,5 +1,5 @@
package Cwd;
-$VERSION = $VERSION = '2.18';
+$VERSION = $VERSION = '2.19';
=head1 NAME