Commit bd038683 authored by joerg@mysql.com's avatar joerg@mysql.com

"configure.in": Correct equality comparison: In shell 'test', it is single '=' (bug#11007).

parent a68bfdc3
......@@ -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]
)
......
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