diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-28 16:15:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-28 16:28:14 +0200 |
commit | e1f1d473091e2a33e9a18942dfb1416a27019e0f (patch) | |
tree | fa3077f5619cbb956c9d8c969a5c8f6f461ab9ca /m4/mysql.m4 | |
parent | 3e4339ad65422372794d7ad66c290d283c1e3d05 (diff) |
Clear shell variables before appending
Diffstat (limited to 'm4/mysql.m4')
-rw-r--r-- | m4/mysql.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/m4/mysql.m4 b/m4/mysql.m4 index 102f150..a93efe6 100644 --- a/m4/mysql.m4 +++ b/m4/mysql.m4 @@ -207,6 +207,8 @@ AC_CONFIG_COMMANDS([mysql.options], rm -f db.options echo '#! /bin/sh' >db-driver + echo 'opt=' >>db-driver + if test x$mysql_user_set = xyes; then echo "--user '$mysql_user'" >>db.options echo 'opt="$opt --user='"$mysql_user"'"' >>db-driver |