We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove --mysql-plugins-dir option. And search mysql_config and get mysql plugin dir with --plugindir option.
first, use --with-mysql and if set --with-mysql-config, use value of --with-mysql-config
for i in $MYSQL_PREFIX/bin $MYSQL_PREFIX/sbin /usr/bin /usr/sbin /bin /sbin /usr/local/bin /usr/local/sbin do if test -f "$i/mysql_config"; then MYSQL_CONFIG="$i/mysql_config" break fi done if test "x$with_mysql_config" != "xno"; then if test -x "$with_mysql_config"; then MYSQL_CONFIG="$with_mysql_config" fi fi
The text was updated successfully, but these errors were encountered:
fixed commit 904c261
Sorry, something went wrong.
Joungkyun
No branches or pull requests
Remove --mysql-plugins-dir option. And search mysql_config and get mysql plugin dir with --plugindir option.
first, use --with-mysql and if set --with-mysql-config, use value of --with-mysql-config
The text was updated successfully, but these errors were encountered: