From: Graham Knop Date: Sun, 8 Feb 2015 16:50:15 +0000 (-0500) Subject: join multiple authors rather than picking one X-Git-Tag: v0.002000~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0cc25268783d5d725277f5312b974c951beccbc5;p=p5sagit%2FDistar.git join multiple authors rather than picking one --- diff --git a/lib/Distar.pm b/lib/Distar.pm index 594c18f..879023e 100644 --- a/lib/Distar.pm +++ b/lib/Distar.pm @@ -130,7 +130,7 @@ sub run_preflight { return $class->SUPER::new({ LICENSE => 'perl_5', MIN_PERL_VERSION => '5.006', - AUTHOR => ($MM_VER >= 6.5702 ? $Distar::Author : $Distar::Author->[0]), + AUTHOR => ($MM_VER >= 6.5702 ? $Distar::Author : join(', ', @$Distar::Author)), %$args, ABSTRACT_FROM => $args->{VERSION_FROM}, test => { TESTS => ($args->{test}{TESTS}||'t/*.t').' xt/*.t xt/*/*.t' },