diff options
author | unknown <joerg@mysql.com> | 2005-06-16 13:44:08 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-06-16 13:44:08 +0200 |
commit | 1398e89b01732a21cda1fc95f723b0de428c3bda (patch) | |
tree | 58d430070ac46f937e48bcb3bfadbe86017f7d06 /configure.in | |
parent | 8771b9f4eb0e8a0a339fce9e2354b6affd582999 (diff) | |
download | mariadb-git-1398e89b01732a21cda1fc95f723b0de428c3bda.tar.gz |
"configure.in": Correct equality comparison: In shell 'test', it is single '=' (bug#11007).
configure.in:
Correct equality comparison: In shell 'test', it is single '=' (bug#11007).
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 08b739c5782..d7a081ed6c5 100644 --- a/configure.in +++ b/configure.in @@ -2273,7 +2273,7 @@ AC_ARG_WITH([mysqlmanager], [if test "x${withval}" != "xno"; then tools_dirs="$tools_dirs server-tools" fi], - [if test "x${with_server}" == "xyes"; then + [if test "x${with_server}" = "xyes"; then tools_dirs="$tools_dirs server-tools" fi] ) |