Commit ea728806 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

address review comments

parent 2f7a1564
......@@ -2516,13 +2516,12 @@ sub fix_vs_config_dir () {
my $modified = 1e30;
$opt_vs_config="";
for my $dir (qw(sql/*)) {
for (<$basedir/$dir/mysqld.exe>) {
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($_));
}
}
......
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