summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-10-17 21:49:44 +0200
committerbbaetz%student.usyd.edu.au <>2002-10-17 21:49:44 +0200
commit9ea5883a2eed24f57f1d161d5f58f147f2e692ea (patch)
tree37d6be11b9e8c23375140d2d59547c6020a75aa9 /checksetup.pl
parentdc892b1118b931cb2b616a7c5158995f97960d22 (diff)
downloadbugzilla-9ea5883a2eed24f57f1d161d5f58f147f2e692ea.tar.gz
bugzilla-9ea5883a2eed24f57f1d161d5f58f147f2e692ea.tar.xz
Bug 173495 - require perl 5.6
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 2 insertions, 2 deletions
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,