1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Debug printouts

This commit is contained in:
Magnus Svensson
2008-08-11 10:41:23 +02:00
parent 3a72c5bf61
commit 788362de81
2 changed files with 5 additions and 2 deletions

View File

@ -66,7 +66,9 @@ sub mixed_path {
my ($path)= @_;
if (IS_CYGWIN){
return unless defined $path;
$path= `cygpath -m $path`;
my $cmd= "cygpath -m $path";
print "$cmd\n";
$path= `$cmd`;
chomp $path;
}
return $path;