From: Graham Knop Date: Tue, 4 Mar 2014 14:32:28 +0000 (-0500) Subject: be compatible with perl 5.6 X-Git-Tag: v1.002001~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b95fe8b9490eeda818c99bf35ed3377d75672409;p=p5sagit%2FImport-Into.git be compatible with perl 5.6 --- diff --git a/Makefile.PL b/Makefile.PL index d8ed28c..2fd5c67 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,5 @@ use strict; use warnings FATAL => 'all'; -use 5.008001; use ExtUtils::MakeMaker; (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; diff --git a/t/import_into.t b/t/import_into.t index e9ebb9c..fcf3c84 100644 --- a/t/import_into.t +++ b/t/import_into.t @@ -47,7 +47,7 @@ eval q{ package TestPackage; - no warnings; + no warnings FATAL => 'all'; #line 1 "import_into_inline.pl" use MultiExporter;