some naughty creature started using smartmatch so now the floodgates are open. unless someone closes them again. check for perl 5.10 instead of 5.8.

This commit is contained in:
root 2011-03-17 16:33:02 -04:00
parent b27bc19e4d
commit df31c13e13

View file

@ -52,10 +52,10 @@ printResult($webguiRoot);
###################################
printTest("Perl Interpreter");
if ($] >= 5.008) {
if ($] >= 5.010) {
printResult("OK");
} else {
failAndExit("Please upgrade to 5.8 or later! Cannot continue without Perl 5.8 or higher.");
failAndExit("Please upgrade to 5.10 or later! Cannot continue without Perl 5.10 or higher.");
}
##Doing this as a global is not nice, but it works