From 9a0295d396eaa7844c84e92ceb9484c8534fc3ab Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Tue, 17 Apr 2018 13:28:14 +0000 Subject: [PATCH] Bug 20594: Revert Perl version to 5.10 While hunting perldoc initially, caller could not be found prior to 5.20.x Perl. However, David Cook pointed out it has existed since 5.8.8 of Perl. So, this reverts the version back to 5.10, while keeping the refactor that requires only changing installer/install.pl in the future for Perl version changes. --- installer/install.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/install.pl b/installer/install.pl index c132939..e8ff3fe 100755 --- a/installer/install.pl +++ b/installer/install.pl @@ -93,8 +93,8 @@ if ( $step && $step == 1 ) { $template->param( 'checkmodule' => 1 ) ; # we start with the assumption that there are no problems and set this to 0 if there are - unless ( $] >= 5.020000 ) { # Bug 20104 - $template->param( problems => 1, perlversion => '5.20', checkmodule => 0 ); + unless ( $] >= 5.010000 ) { # Bug 20594 + $template->param( problems => 1, perlversion => '5.10', checkmodule => 0 ); $checkmodule = 0; } -- 2.1.4