From: apeiron Date: Sat, 21 Jun 2008 17:21:22 +0000 (+0000) Subject: Fix the use 5.8.1 line to work with 5.10 via use 5.008001;. Thanks to Mark X-Git-Tag: 1.006009~91 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Flocal-lib.git;a=commitdiff_plain;h=c1441fb686b2cfb7899000ba3a99564370691f30 Fix the use 5.8.1 line to work with 5.10 via use 5.008001;. Thanks to Mark Grimes (mgrimes). git-svn-id: http://dev.catalyst.perl.org/repos/bast/local-lib/1.000/trunk@4509 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/lib/local/lib.pm b/lib/local/lib.pm index 3fa7546..d52c4de 100644 --- a/lib/local/lib.pm +++ b/lib/local/lib.pm @@ -3,8 +3,8 @@ use warnings; package local::lib; -use 5.8.1; # probably works with earlier versions but I'm not supporting them - # (patches would, of course, be welcome) +use 5.008001; # probably works with earlier versions but I'm not supporting them + # (patches would, of course, be welcome) use File::Spec (); use File::Path ();