diff options
author | John E. Malmberg <wb8tyw@qsl.net> | 2005-08-10 19:26:03 -0400 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-08-11 07:35:27 +0000 |
commit | 16ed468695c21630f18883bfbedc3d5170ddc8b2 (patch) | |
tree | dc0fb151b14d61b21fd69a495a06aee634f4f01a /t/pod | |
parent | 6cd63c21c135f707c2046a8512b70b74c3e1000c (diff) | |
download | perl-16ed468695c21630f18883bfbedc3d5170ddc8b2.tar.gz |
[patch] blead@25282 - VMS specific fixes. [2nd try]
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-ID: <42FAC54B.2050207@qsl.net>
p4raw-id: //depot/perl@25284
Diffstat (limited to 't/pod')
-rw-r--r-- | t/pod/find.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/pod/find.t b/t/pod/find.t index 7f8476d2d8..20586014f1 100644 --- a/t/pod/find.t +++ b/t/pod/find.t @@ -88,6 +88,7 @@ print "### found $result\n"; require Config; if ($^O eq 'VMS') { # privlib is perl_root:[lib] OK but not under mms + $result = VMS::Filespec::vmsify($result); #if you want VMS you need to force it. $compare = "lib.File]Find.pm"; $result =~ s/perl_root:\[\-?\.?//i; $result =~ s/\[\-?\.?//i; # needed under `mms test` |