From: jocuri%softhome.net <> Date: Mon, 12 Apr 2004 01:50:04 +0000 (+0000) Subject: Patch for bug 240228: Improve the format of the error message displayed by checksetup... X-Git-Tag: bugzilla-2.16.6~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f49056d82e273f90f7f8d4b82bebdc1e7590788;p=thirdparty%2Fbugzilla.git 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. --- diff --git a/checksetup.pl b/checksetup.pl index 6b0f1d6fa4..b70eeece74 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -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"; }