summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-04-12 03:42:33 +0200
committerjocuri%softhome.net <>2004-04-12 03:42:33 +0200
commit4d1ced8f750508a70c938a932c09a0cd56103c28 (patch)
tree9a83bf6e80801565cec8e348b872bc32facc93e2 /checksetup.pl
parentb9c3dbad825ee0936d1687aff9fdf122d88d6dac (diff)
downloadbugzilla-4d1ced8f750508a70c938a932c09a0cd56103c28.tar.gz
bugzilla-4d1ced8f750508a70c938a932c09a0cd56103c28.tar.xz
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.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 8edb48145..aad13e2cb 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -1436,7 +1436,7 @@ if ($my_db_check) {
if ( vers_cmp($sql_vers,$sql_want) > -1 ) {
print "ok: found v$sql_vers\n" unless $silent;
} 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";
}