Subject: | Can't find Unicode property definition "o" at ... |
Hi,
I got a strange error during `perl Build dist`:
Can't find Unicode property definition "o" at
C:/Perl/site/lib/Module/Build/JSAN.pm line 70.
Replacing line 70 with this code:
(my $html = $pod) =~ s|^\Q$pod_dir|$html_dir|;
and line 80 with this:
(my $txt = $pod) =~ s|^\Q$pod_dir|$txt_dir|;
seems to fix the problem. Some meta char breaks the code. You can
also use quotemeta() instead of a \Q escape...