1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00
mysql-test/lib/mtr_misc.pl:
  Revert change to outpout exe path and name in win format
This commit is contained in:
unknown
2006-03-06 22:14:06 +01:00
parent 187f89a443
commit e33e0bfc93

View File

@ -96,16 +96,7 @@ sub mtr_exe_exists (@) {
map {$_.= ".exe"} @path if $::glob_win32;
foreach my $path ( @path )
{
if ( -x $path )
{
if ( $::glob_cygwin_perl )
{
$path= `cygpath -w $path`;
# Chop off the \n that cygpath adds
$path=~ s/\n//;
}
return $path;
}
return $path if -x $path;
}
if ( @path == 1 )
{