summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-03-18 15:06:30 +0100
committerbbaetz%student.usyd.edu.au <>2002-03-18 15:06:30 +0100
commit838fdab57fb30cbbbaddaa686d6bd9e6a7fe6021 (patch)
tree0332da6a03cbffd80f2a2d832e5277cf216069f0
parentfbc9c85ebe6fee0bd93c88e3f5c046172291f2dd (diff)
downloadbugzilla-838fdab57fb30cbbbaddaa686d6bd9e6a7fe6021.tar.gz
bugzilla-838fdab57fb30cbbbaddaa686d6bd9e6a7fe6021.tar.xz
Bug 118953 - incorrect message from checksetup.pl
patch by bugzilla@ali.as r=bbaetz, justdave
-rwxr-xr-xchecksetup.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl
index ba5d1e087..cbc23a2d9 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -226,8 +226,9 @@ if (!$xmlparser) {
}
if (@missing > 0) {
print "\n\n";
- print "You are missing some Perl modules which are required by Bugzilla.\n";
- print "They can be installed by running (as root) the following:\n";
+ print "Bugzilla requires some Perl modules which are either missing from your\n",
+ "system, or the version on your system is too old.\n",
+ "They can be installed by running (as root) the following:\n";
foreach my $module (@missing) {
print " perl -MCPAN -e 'install \"$module\"'\n";
}