]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 118953 - incorrect message from checksetup.pl
authorbbaetz%student.usyd.edu.au <>
Mon, 18 Mar 2002 14:06:30 +0000 (14:06 +0000)
committerbbaetz%student.usyd.edu.au <>
Mon, 18 Mar 2002 14:06:30 +0000 (14:06 +0000)
patch by bugzilla@ali.as r=bbaetz, justdave

checksetup.pl

index ba5d1e08771fd15683aad3cb888930ffb2441d27..cbc23a2d93c0f52bb6b4c33d5febedbd324859f3 100755 (executable)
@@ -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";
     }