Bug#39326: mysqld_safe doesn't use --basedir value in search of \
my_print_defaults Now use basedir to set an unset ledir and to find the location of my_print_defaults .
This commit is contained in:
parent
60beb4c3da
commit
c924f116f6
@ -212,15 +212,26 @@ fi
|
|||||||
|
|
||||||
MY_PWD=`pwd`
|
MY_PWD=`pwd`
|
||||||
# Check for the directories we would expect from a binary release install
|
# Check for the directories we would expect from a binary release install
|
||||||
if test -f "$relpkgdata"/english/errmsg.sys -a -x ./bin/mysqld
|
if test -n "$MY_BASEDIR_VERSION" -a -d "$MY_BASEDIR_VERSION"
|
||||||
then
|
then
|
||||||
MY_BASEDIR_VERSION=$MY_PWD # Where bin, share and data are
|
# BASEDIR is already overridden on command line. Do not re-set.
|
||||||
ledir=$MY_BASEDIR_VERSION/bin # Where mysqld is
|
|
||||||
|
# Use BASEDIR to discover le.
|
||||||
|
if test -x "$MY_BASEDIR_VERSION/libexec/mysqld"
|
||||||
|
then
|
||||||
|
ledir="$MY_BASEDIR_VERSION/libexec"
|
||||||
|
else
|
||||||
|
ledir="$MY_BASEDIR_VERSION/bin"
|
||||||
|
fi
|
||||||
|
elif test -f "$relpkgdata"/english/errmsg.sys -a -x "$MY_PWD/bin/mysqld"
|
||||||
|
then
|
||||||
|
MY_BASEDIR_VERSION="$MY_PWD" # Where bin, share and data are
|
||||||
|
ledir="$MY_PWD/bin" # Where mysqld is
|
||||||
# Check for the directories we would expect from a source install
|
# Check for the directories we would expect from a source install
|
||||||
elif test -f "$relpkgdata"/english/errmsg.sys -a -x ./libexec/mysqld
|
elif test -f "$relpkgdata"/english/errmsg.sys -a -x "$MY_PWD/libexec/mysqld"
|
||||||
then
|
then
|
||||||
MY_BASEDIR_VERSION=$MY_PWD # Where libexec, share and var are
|
MY_BASEDIR_VERSION="$MY_PWD" # Where libexec, share and var are
|
||||||
ledir=$MY_BASEDIR_VERSION/libexec # Where mysqld is
|
ledir="$MY_PWD/libexec" # Where mysqld is
|
||||||
# Since we didn't find anything, used the compiled-in defaults
|
# Since we didn't find anything, used the compiled-in defaults
|
||||||
else
|
else
|
||||||
MY_BASEDIR_VERSION=@prefix@
|
MY_BASEDIR_VERSION=@prefix@
|
||||||
@ -274,7 +285,10 @@ export MYSQL_HOME
|
|||||||
|
|
||||||
# Get first arguments from the my.cnf file, groups [mysqld] and [mysqld_safe]
|
# Get first arguments from the my.cnf file, groups [mysqld] and [mysqld_safe]
|
||||||
# and then merge with the command line arguments
|
# and then merge with the command line arguments
|
||||||
if test -x ./bin/my_print_defaults
|
if test -x "$MY_BASEDIR_VERSION/bin/my_print_defaults"
|
||||||
|
then
|
||||||
|
print_defaults="$MY_BASEDIR_VERSION/bin/my_print_defaults"
|
||||||
|
elif test -x ./bin/my_print_defaults
|
||||||
then
|
then
|
||||||
print_defaults="./bin/my_print_defaults"
|
print_defaults="./bin/my_print_defaults"
|
||||||
elif test -x @bindir@/my_print_defaults
|
elif test -x @bindir@/my_print_defaults
|
||||||
|
Loading…
x
Reference in New Issue
Block a user