From 2bfb07c85bde0edf885d61f14377e2b588ecece1 Mon Sep 17 00:00:00 2001 From: Chuck Bell Date: Thu, 21 Jul 2011 17:46:20 -0400 Subject: [PATCH] WL#5710 : enable and disable plugins Added additional search path of /bin for finding tools. --- client/mysql_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++) {