summaryrefslogtreecommitdiff
path: root/scripts/mysqld_safe.sh
diff options
context:
space:
mode:
authorMats Kindahl <mats.kindahl@oracle.com>2010-06-16 11:25:55 +0200
committerMats Kindahl <mats.kindahl@oracle.com>2010-06-16 11:25:55 +0200
commit2de17fbb2b72d4121e2fa315b233236f705297cf (patch)
tree74d3eeec2da67416a164e272b6913b8fb6578154 /scripts/mysqld_safe.sh
parentb4d129cc048b08d319a5f677e73dd4fcd6edb8a2 (diff)
downloadmariadb-git-2de17fbb2b72d4121e2fa315b233236f705297cf.tar.gz
BUG#52737: plugin_dir is set to /usr/local/mysql/lib/plugin while starting via mysqld_safe
Incremental patch to fix plugin_dir from .../lib/plugin to .../lib/mysql/plugin.
Diffstat (limited to 'scripts/mysqld_safe.sh')
-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 5d7f0760b82..562732e7387 100644
--- a/scripts/mysqld_safe.sh
+++ b/scripts/mysqld_safe.sh
@@ -704,7 +704,7 @@ fi
cmd="`mysqld_ld_preload_text`$NOHUP_NICENESS"
-plugin_dir="${PLUGIN_DIR:-$MY_BASEDIR_VERSION/lib/plugin}${PLUGIN_VARIANT}"
+plugin_dir="${PLUGIN_DIR:-$MY_BASEDIR_VERSION/lib/mysql/plugin}${PLUGIN_VARIANT}"
for i in "$ledir/$MYSQLD" "$defaults" "--basedir=$MY_BASEDIR_VERSION" \
"--datadir=$DATADIR" "--plugin-dir=$plugin_dir" "$USER_OPTION"