Description: ExtUtils::MakeMaker expects an arrayref for AUTHOR since 6.57_02
 which was first included in perl 5.13.5
Origin: vendor
Bug: https://rt.cpan.org/Public/Bug/Display.html?id=61780
Bug-Debian: http://bugs.debian.org/629284
Forwarded: no, this is a band-aid and not a proper fix (cf. the ticket at CPAN RT)
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2011-11-15

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -26,7 +26,9 @@
 			   },
     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
       (ABSTRACT_FROM => 'Constants.pm', # retrieve abstract from module
-       AUTHOR     => 'Sam Vilain <sam@vilain.net>') : ()),
+       AUTHOR     =>
+       ($] < 5.013005 ? 'Sam Vilain <sam@vilain.net>' :  [ 'Sam Vilain <sam@vilain.net>' ])
+       ) : ()),
 });
 
 if (open MAKEMAKERISAHORRIDHACK, ">t/perlpath") {
