X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/d3bc6aa63a6a5b0edf9948f07d2571be8049339c..9960802c2b6f4b61c0c7ce718f3ce247a3a13bf1:/make_ext.pl diff --git a/make_ext.pl b/make_ext.pl index 8f3e6db..3c25b28 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -387,7 +387,7 @@ my $script_ext = $^O eq 'VMS' ? '.com' : ''; my %%pod_scripts; foreach (glob('pod*.PL')) { my $script = $_; - s/.PL$/$script_ext/; + s/.PL$/$script_ext/i; $pod_scripts{$script} = $_; } my @exe_files = values %%pod_scripts;