Subject: | Replace Win32::AbsPath with core module File::Spec::Functions |
Simply replace
use Win32::AbsPath qw(RelativeToAbsolute);
with
use File::Spec::Functions qw(rel2abs);
and
$file = RelativeToAbsolute $file;
with
$file = rel2abs $file;
File::Spec::Functions is a core perl module.