From: bbaetz%student.usyd.edu.au <> Date: Mon, 18 Mar 2002 14:06:30 +0000 (+0000) Subject: Bug 118953 - incorrect message from checksetup.pl X-Git-Tag: bugzilla-2.16rc1~180 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=838fdab57fb30cbbbaddaa686d6bd9e6a7fe6021;p=thirdparty%2Fbugzilla.git Bug 118953 - incorrect message from checksetup.pl patch by bugzilla@ali.as r=bbaetz, justdave --- diff --git a/checksetup.pl b/checksetup.pl index ba5d1e0877..cbc23a2d93 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"; }