From 9ea5883a2eed24f57f1d161d5f58f147f2e692ea Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" <> Date: Thu, 17 Oct 2002 19:49:44 +0000 Subject: Bug 173495 - require perl 5.6 --- checksetup.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 5f7ca5326..9f22ae1f5 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -132,8 +132,8 @@ if ($ARGV[0]) { # print "\nChecking perl modules ...\n" unless $silent; -unless (eval "require 5.005") { - die "Sorry, you need at least Perl 5.005\n"; +unless ($] >= 5.006) { + die "Sorry, you need at least Perl 5.6\n"; } # vers_cmp is adapted from Sort::Versions 1.3 1996/07/11 13:37:00 kjahds, -- cgit v1.2.3-24-g4f1b