diff options
author | unknown <msvensson@shellback.(none)> | 2006-10-08 16:11:55 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-10-08 16:11:55 +0200 |
commit | 4404ea6418c6af05b093db313905c7cdd267be75 (patch) | |
tree | 676fb8b62e7d40b5a15d04aa17cce48eaebde177 /mysql-test | |
parent | 96c801f1a7a94ca6f486114738820f2faa7392dd (diff) | |
download | mariadb-git-4404ea6418c6af05b093db313905c7cdd267be75.tar.gz |
When looking for client binary directories it necessary to look for the one s that are "deep down" first.
Diffstat (limited to 'mysql-test')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 309c82ef8f2..7b9a55053f0 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -484,11 +484,11 @@ sub initial_setup () { # # Look for the path where to find the client binaries - $path_client_bindir= mtr_path_exists("$glob_basedir/client", + $path_client_bindir= mtr_path_exists("$glob_basedir/client/release", + "$glob_basedir/client/debug", + "$glob_basedir/client", "$glob_basedir/client_release", "$glob_basedir/client_debug", - "$glob_basedir/client/release", - "$glob_basedir/client/debug", "$glob_basedir/bin"); # Look for the mysqld executable |