Commit 07447130 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 343566: Runtests test 004template.t fails on some systems with a complaint…

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
parent 049069a3
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment