Subject: | ExtUtils::Install->install() should honor uninstall_shadows flag |
In line 430 of PAR/Dist.pm the last parameter to
ExtUtils::Install::install() is hardcoded to 0. It would be nice if this
flag could be specified with an option.
Changing the line to something like this takes care of it for me:
my $uninstall_shadows=$args{'uninstall_shadows'} ? 1 : 0;
$rv = ExtUtils::Install::install($target, 1, 0, $uninstall_shadows);