Bug 343566: Runtests test 004template.t fails on some systems with a complaint about RELATIVE - Patch by Fr�d�ric Buclin <LpSolit@gmail.com> r=joel a=myk

This commit is contained in:
lpsolit%gmail.com 2006-07-04 22:25:47 +00:00
parent 89c8249167
commit 4d51047e92

View File

@ -98,6 +98,10 @@ sub find_templates {
my $local_dir = File::Spec->abs2rel($File::Find::dir,
$File::Find::topdir);
# File::Spec 3.13 and newer return "." instead of "" if both
# arguments of abs2rel() are identical.
$local_dir = "" if ($local_dir eq ".");
if ($local_dir) {
$filename = File::Spec->catfile($local_dir, $_);
} else {