Commit d7389eed authored by jimw@mysql.com's avatar jimw@mysql.com

Fix mysql_install_db to look for libexecdir relative to basedir when

it has been specified. (Bug #7347)
parent 6058edbe
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment