diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2013-11-22 11:52:19 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2013-11-22 11:52:19 +0400 |
commit | a082ea78c2baf0091c76a2bc287813f236df4f25 (patch) | |
tree | 98f43910d7fa996a9d291f99eabaacba8e5365d0 /mysql-test/mysql-test-run.pl | |
parent | d34e46795ef2691af107b66e04639e10f6b6bdd3 (diff) | |
download | mariadb-git-a082ea78c2baf0091c76a2bc287813f236df4f25.tar.gz |
"mtr mysql_tzinfo_to_sql_symlink" failed in out-of-source builds with this error:
mysql-test-run: *** ERROR: Could not find any of
/mariadb-5.5.34/sql/mysql_tzinfo_to_sql
/mariadb-5.5.34/build/client/mysql_tzinfo_to_sql
Fixed the directory list to search mysql_tzinfo_to_sql binary in.
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 7fa9504f927..e437a474521 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -2494,7 +2494,7 @@ sub environment_setup { # mysql_tzinfo_to_sql # ---------------------------------------------------- my $exe_mysql_tzinfo_to_sql= mtr_exe_exists("$basedir/sql$opt_vs_config/mysql_tzinfo_to_sql", - "$path_client_bindir/mysql_tzinfo_to_sql"); + "$bindir/sql$opt_vs_config/mysql_tzinfo_to_sql"); $ENV{'MYSQL_TZINFO_TO_SQL'}= native_path($exe_mysql_tzinfo_to_sql); # Create an environment variable to make it possible |