mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Fix mysql_install_db to look for libexecdir relative to basedir when
it has been specified. (Bug #7347) scripts/mysql_install_db.sh: When basedir is specified, look for libexecdir relative to that
This commit is contained in:
parent
b692ca4fd5
commit
e667cf91da
1 changed files with 2 additions and 2 deletions
|
@ -98,9 +98,9 @@ else
|
|||
if test -x "$basedir/libexec/mysqld"
|
||||
then
|
||||
execdir="$basedir/libexec"
|
||||
elif test -x "@libexecdir@/mysqld"
|
||||
elif test -x "$basedir/sbin/mysqld"
|
||||
then
|
||||
execdir="@libexecdir@"
|
||||
execdir="$basedir/sbin"
|
||||
else
|
||||
execdir="$basedir/bin"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue