Subject: | pod_where doesn't seem to work with PAR::Packer |
When run directly the following script prints the path for Data/Dumper.pm
#!/usr/bin/env perl
use Data::Dumper;
use Pod::Find qw(pod_where);
my $s = pod_where( { -inc => 1 }, 'Data::Dumper');
print Dumper $s;
However, when packed with par, the result is
$VAR1 = undef;