diff options
author | unknown <msvensson@neptunus.(none)> | 2006-12-04 19:15:09 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-12-04 19:15:09 +0100 |
commit | 10974bc2cb49572a86de7eaacfcc7929fb66d169 (patch) | |
tree | f2ad74fb14451afd68e5e5d12c0dd76716ddd0b2 | |
parent | 52748172bdf21d541ca7211a7a11af066728454d (diff) | |
download | mariadb-git-10974bc2cb49572a86de7eaacfcc7929fb66d169.tar.gz |
mysql-test-run.pl: Append .nlm to the binary name on NetWare
mysql-test/lib/mtr_misc.pl:
Append .nlm to the binary name on NetWare
-rw-r--r-- | mysql-test/lib/mtr_misc.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/lib/mtr_misc.pl b/mysql-test/lib/mtr_misc.pl index 846ca25b725..f28e25e5966 100644 --- a/mysql-test/lib/mtr_misc.pl +++ b/mysql-test/lib/mtr_misc.pl @@ -134,6 +134,7 @@ sub mtr_exe_maybe_exists (@) { my @path= @_; map {$_.= ".exe"} @path if $::glob_win32; + map {$_.= ".nlm"} @path if $::glob_netware; foreach my $path ( @path ) { if($::glob_win32) |