mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Fix a "configure" syntax error.
It had been introduced with the patch for bug entry 37098 and affected runs "--without-server" only. configure.in: The conditional "BUILD_INNODB_TOOLS" is set depending on whether InnoDB is configured in the build, but that check is done only when building the server. For builds without the server it must also be set, or else "configure" reports an error. Set it to "false" in such builds, as this conditional only affects a tool that is useless in client installations.
This commit is contained in:
parent
5bc2ad279d
commit
b1f3962276
1 changed files with 3 additions and 1 deletions
|
|
@ -2728,8 +2728,10 @@ then
|
|||
AC_SUBST(THREAD_LOBJECTS)
|
||||
fi
|
||||
|
||||
if test "$with_server" != "no"
|
||||
if test "$with_server" = "no"
|
||||
then
|
||||
AM_CONDITIONAL([BUILD_INNODB_TOOLS], [false])
|
||||
else
|
||||
server_scripts="mysqld_safe mysql_install_db"
|
||||
sql_server_dirs="strings mysys dbug extra regex"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue