diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2010-12-02 16:19:28 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2010-12-02 16:19:28 +0100 |
commit | 8b4b8c8e65cb25121ae6c7274e6e190932157d8b (patch) | |
tree | 9b22d14d8daa64eda401f894f61603b8f2049f56 /mysql-test/mysql-test-run.pl | |
parent | 1a2df3f4eb403875406a72c39efce8a2fb6d32ac (diff) | |
parent | ea728806590f856eaa49ea0111dd794b484f7d0d (diff) | |
download | mariadb-git-8b4b8c8e65cb25121ae6c7274e6e190932157d8b.tar.gz |
merge
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index c32edf81f27..bc88d0d43f9 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -2513,14 +2513,12 @@ sub fix_vs_config_dir () { my $modified = 1e30; $opt_vs_config=""; - for my $dir (qw(client/*.dir libmysql/libmysql.dir sql/mysqld.dir - sql/udf_example.dir storage/*/*.dir plugin/*/*.dir)) { - for (<$basedir/$dir/*/BuildLog.htm>) { - if (-M $_ < $modified) - { - $modified = -M _; - $opt_vs_config = basename(dirname($_)); - } + + for (<$basedir/sql/*/mysqld.exe>) { + if (-M $_ < $modified) + { + $modified = -M _; + $opt_vs_config = basename(dirname($_)); } } |