On 2015-08-11 13:57:42, me@peter-r.co.uk wrote:
Show quoted text> I
> thought this version of Perl didn't need Data::Alias for Dios
Data::Alias is specified as a prerequisite in META.json as well as Makefile.PL (and the entries in Makefile.PL take precedence, since the metadata specifies dynamic_config => 1).
probably Makefile.PL should do:
PREREQ_PM => {
$] < '5.022' ? ( 'Data::Alias' => '0' ) : (),
...,
}