summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBala <balasubramanian.kandasamy@oracle.com>2015-01-16 07:27:01 +0100
committerBala <balasubramanian.kandasamy@oracle.com>2015-01-16 07:27:01 +0100
commita3e9500823d40d3959353b08577a1e98c2426bf2 (patch)
tree7fd38c6aaef1ec34854a837056d1e71c0de7660f /scripts
parent2750b4b7386741945ae47bf22bba78d0b7792764 (diff)
downloadmariadb-git-a3e9500823d40d3959353b08577a1e98c2426bf2.tar.gz
Bug#17619241 SERVICE OR MYSQLD_SAFE STARTS PICKING WRONG PLUGIN DIRECTORY
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysqld_safe.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysqld_safe.sh b/scripts/mysqld_safe.sh
index 31bb8f364e2..f705953059e 100644
--- a/scripts/mysqld_safe.sh
+++ b/scripts/mysqld_safe.sh
@@ -504,7 +504,7 @@ if [ -n "${PLUGIN_DIR}" ]; then
plugin_dir="${PLUGIN_DIR}"
else
# Try to find plugin dir relative to basedir
- for dir in lib/mysql/plugin lib/plugin
+ for dir in lib64/mysql/plugin lib64/plugin lib/mysql/plugin lib/plugin
do
if [ -d "${MY_BASEDIR_VERSION}/${dir}" ]; then
plugin_dir="${MY_BASEDIR_VERSION}/${dir}"