diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-13 15:08:01 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-13 15:08:01 +0200 |
commit | ec8ce55942fd4a978be36aa14e4efcf804c908ce (patch) | |
tree | 53f16f3b0f7b145c26c614cd51a819a2d7a4739f /m4/mysql.m4 | |
parent | 3fe2f0f8570ad9b6db2a550d2c313e5367e61fd1 (diff) |
Make test options consistent with MySQL
Diffstat (limited to 'm4/mysql.m4')
-rw-r--r-- | m4/mysql.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/mysql.m4 b/m4/mysql.m4 index f40ba6d..b1a9d6a 100644 --- a/m4/mysql.m4 +++ b/m4/mysql.m4 @@ -213,12 +213,12 @@ AC_CONFIG_COMMANDS([db.options], fi if test x$mysql_password_set = xyes; then - echo "--passwd '$mysql_password'" >>db.options + echo "--password '$mysql_password'" >>db.options echo 'opt="$opt --password='"$mysql_password"'"' >>db-driver fi if test x$mysql_db_set = xyes; then - echo "--db-name '$mysql_db'" >>db.options + echo "--database '$mysql_db'" >>db.options echo 'opt="$opt --database='"$mysql_db"'"' >>db-driver fi |