diff options
-rw-r--r-- | ext/Pod-Html/lib/Pod/Html.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/Pod-Html/lib/Pod/Html.pm b/ext/Pod-Html/lib/Pod/Html.pm index aaf0764688..a4c53c6fa6 100644 --- a/ext/Pod-Html/lib/Pod/Html.pm +++ b/ext/Pod-Html/lib/Pod/Html.pm @@ -655,9 +655,8 @@ sub unixify { my $full_path = shift; return '' unless $full_path; - my ($vol, $dir, $file) = File::Spec->splitpath($full_path); return File::Spec::Unix->catfile( # change \s to /s and such - File::Spec->splitdir($dir.$file)); # ignore $vol(ume) + File::Spec->splitdir($full_path)); } 1; |