1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-20 13:13:59 +03:00

mysql-test-run.pl : Fix the search path for "ndb_mgmd" and "ndbd". bug#21721

This commit is contained in:
joerg@trift2. 2006-08-18 18:24:38 +02:00
parent 284fa931bb
commit 1f79db41fa

View File

@ -1299,8 +1299,10 @@ sub executable_setup () {
$path_ndb_tools_dir= "$glob_basedir/bin";
$exe_ndb_mgm= "$glob_basedir/bin/ndb_mgm";
$exe_ndb_waiter= "$glob_basedir/bin/ndb_waiter";
$exe_ndbd= "$glob_basedir/libexec/ndbd";
$exe_ndb_mgmd= "$glob_basedir/libexec/ndb_mgmd";
$exe_ndbd= mtr_exe_exists("$glob_basedir/libexec/ndbd",
"$glob_basedir/bin/ndbd");
$exe_ndb_mgmd= mtr_exe_exists("$glob_basedir/libexec/ndb_mgmd",
"$glob_basedir/bin/ndb_mgmd");
}
$exe_master_mysqld= $exe_master_mysqld || $exe_mysqld;