use more conservative syntax in makefile include
Robert 'phaylon' Sedlacek [Thu, 30 Aug 2012 21:24:36 +0000 (21:24 +0000)]
maint/Makefile.PL.include

index 6e047b4..3fc9154 100644 (file)
@@ -7,8 +7,6 @@ use Distar;
 
 author 'Robert Sedlacek <r.sedlacek@shadowcat.co.uk>';
 
-manifest_include $_ => qr{.*} for qw(
-  bin
-  t/bin
-  t/data
-);
+manifest_include('bin'      => qr{.*});
+manifest_include('t/bin'    => qr{.*});
+manifest_include('t/data'   => qr{.*});