diff options
author | Chuck Bell <chuck.bell@oracle.com> | 2011-07-21 17:46:20 -0400 |
---|---|---|
committer | Chuck Bell <chuck.bell@oracle.com> | 2011-07-21 17:46:20 -0400 |
commit | 5d9d54519835d2709b690c969909cb6d81f86ada (patch) | |
tree | b8fcbb66caf43cb9a279b48d7cd0ea5746c2d359 /client | |
parent | 9c99ae189c8e03e3b84241a205b87ab7f098b704 (diff) | |
download | mariadb-git-5d9d54519835d2709b690c969909cb6d81f86ada.tar.gz |
WL#5710 : enable and disable plugins
Added additional search path of /bin for finding tools.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysql_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql_plugin.c b/client/mysql_plugin.c index b59a4c6f219..630800a4b39 100644 --- a/client/mysql_plugin.c +++ b/client/mysql_plugin.c @@ -924,7 +924,7 @@ static int find_tool(const char *tool_name, char *tool_path) const char *paths[]= { opt_basedir, "/usr", "/usr/local/mysql", "/usr/sbin", "/usr/share", - "/extra", "/extra/debug", "/extra/release" + "/extra", "/extra/debug", "/extra/release", "/bin" }; for (i= 0; i < (int)array_elements(paths); i++) { |