Patch for bug 240228: Improve the format of the error message displayed by checksetup.pl when the MySQL requirements are not satisfied; r,a=justdave.

git-svn-id: svn://10.0.0.236/branches/BUGZILLA-2_16-BRANCH@154691 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jocuri%softhome.net
2004-04-11 18:50:04 +00:00
parent 3d7f7fa2bb
commit 1c9bb46b66

View File

@@ -1201,7 +1201,7 @@ if ($my_db_check) {
if ( vers_cmp($sql_vers,$sql_want) > -1 ) {
print "ok: found v$sql_vers\n";
} else {
die "Your MySQL server v$sql_vers is too old./n" .
die "\nYour MySQL server v$sql_vers is too old.\n" .
" Bugzilla requires version $sql_want or later of MySQL.\n" .
" Please visit http://www.mysql.com/ and download a newer version.\n";
}