In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/352d600d131f7d260f0c3f1037ad38827d200ea6?hp=e5ad6aba27a6588b9f0e6cd2ccdacc0580318c2a>
- Log ----------------------------------------------------------------- commit 352d600d131f7d260f0c3f1037ad38827d200ea6 Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk> Date: Mon Mar 11 19:04:52 2013 +0000 corelist --feature is actually on available >= v5.16.0 ----------------------------------------------------------------------- Summary of changes: dist/Module-CoreList/corelist | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/Module-CoreList/corelist b/dist/Module-CoreList/corelist index fe56d97..b012c5e 100644 --- a/dist/Module-CoreList/corelist +++ b/dist/Module-CoreList/corelist @@ -227,8 +227,8 @@ if ($Opts{diff}) { } if ($Opts{feature}) { - die "\n--feature is only available with perl v5.9.5 or greater\n" - if $] < 5.009005; + die "\n--feature is only available with perl v5.16.0 or greater\n" + if $] < 5.016; die "\nprovide at least one feature name to --feature\n" unless @ARGV; -- Perl5 Master Repository