diff options
-rw-r--r-- | lib/Pod/Html.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Pod/Html.pm b/lib/Pod/Html.pm index 6077291225..6fb8dcab28 100644 --- a/lib/Pod/Html.pm +++ b/lib/Pod/Html.pm @@ -190,8 +190,9 @@ This program is distributed under the Artistic License. =cut -my $dircache = "pod2html.d~~"; -my $itemcache = "pod2html.i~~"; +my $cache_ext = $^O eq 'VMS' ? ".tmp" : ".x~~"; +my $dircache = "pod2htmd$cache_ext"; +my $itemcache = "pod2htmi$cache_ext"; my @begin_stack = (); # begin/end stack |