Skip Menu |

This queue is for tickets about the PAR-Dist CPAN distribution.

Report information
The Basics
Id: 40202
Status: resolved
Priority: 0/
Queue: PAR-Dist

People
Owner: Nobody in particular
Requestors: ROBINS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in:
  • 0.01
  • 0.03
  • 0.04
  • 0.05
  • 0.06
  • 0.07
  • 0.09
  • 0.10
  • 0.11
  • 0.12
  • 0.13
  • 0.14
  • 0.15
  • 0.15_01
  • 0.16
  • 0.17
  • 0.18
  • 0.19
  • 0.20
  • 0.21
  • 0.22
  • 0.23
  • 0.24
  • 0.25
  • 0.26
  • 0.27
  • 0.28
  • 0.29
  • 0.31
  • 0.32
  • 0.33
  • 0.34
  • 0.35
  • 0.36
  • 0.37
  • 0.38
Fixed in: (no value)



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);
PAR::Dist 0.39 is on its way to CPAN. It supports ExtUtils::Install's "verbose" and "uninstall_shadows" flags. Cheers, Steffen