From 64c6ffe6101d8fc87e9349c7e42179e1ad0f6060 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Sat, 22 May 2010 20:15:59 +1200 Subject: [PATCH] Bug 4505 - Bumping the perl version to 5.8.8 or greater Signed-off-by: Galen Charlton --- Makefile.PL | 2 +- installer/install.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 5966d0d19b..e1a3be27cf 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -34,7 +34,7 @@ use C4::Installer; my $koha_pm = C4::Installer::PerlModules->new; my $DEBUG = 0; -die "perl 5.6.1 or later required" unless ($] >= 5.006001); +die "perl 5.8.8 or later required" unless ($] >= 5.008008); # Hash up directory structure & files beginning with the directory we were called from (should be the base of koha)... diff --git a/installer/install.pl b/installer/install.pl index 437d03f605..5fac1f6160 100755 --- a/installer/install.pl +++ b/installer/install.pl @@ -58,7 +58,7 @@ if ( $step && $step == 1 ) { $template->param( language => 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.006001 ) { # Bug 179 + unless ( $] >= 5.008008 ) { # Bug 4505 $template->param( problems => 1, perlversion => 1, checkmodule => 0 ); } -- 2.20.1