Commit 1398e89b authored by unknown's avatar unknown

"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).
parent 8771b9f4
...@@ -2273,7 +2273,7 @@ AC_ARG_WITH([mysqlmanager], ...@@ -2273,7 +2273,7 @@ AC_ARG_WITH([mysqlmanager],
[if test "x${withval}" != "xno"; then [if test "x${withval}" != "xno"; then
tools_dirs="$tools_dirs server-tools" tools_dirs="$tools_dirs server-tools"
fi], fi],
[if test "x${with_server}" == "xyes"; then [if test "x${with_server}" = "xyes"; then
tools_dirs="$tools_dirs server-tools" tools_dirs="$tools_dirs server-tools"
fi] fi]
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment