Commit ae71b4ae authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 271373: Fix bogus t/008filter.t error on Win32; patch by Marc…

Patch for bug 271373: Fix bogus t/008filter.t error on Win32; patch by Marc Schumann <wurblzap@gmail.com>, r=glob, a=justdave.
parent d4bbccb5
...@@ -73,8 +73,10 @@ foreach my $path (@Support::Templates::include_paths) { ...@@ -73,8 +73,10 @@ foreach my $path (@Support::Templates::include_paths) {
foreach my $file (keys %safe) { foreach my $file (keys %safe) {
my $orig_file = $file; my $orig_file = $file;
$file =~ s|/|\\|g; $file =~ s|/|\\|g;
$safe{$file} = $safe{$orig_file}; if ($file ne $orig_file) {
delete $safe{$orig_file}; $safe{$file} = $safe{$orig_file};
delete $safe{$orig_file};
}
} }
} }
} }
......
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