mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
Removed unused variable "glob_cygwin_shell"
This commit is contained in:
parent
7ec288b51e
commit
9a204629f9
1 changed files with 0 additions and 4 deletions
|
@ -133,7 +133,6 @@ our @mysqld_src_dirs=
|
||||||
our $glob_win32= 0; # OS and native Win32 executables
|
our $glob_win32= 0; # OS and native Win32 executables
|
||||||
our $glob_win32_perl= 0; # ActiveState Win32 Perl
|
our $glob_win32_perl= 0; # ActiveState Win32 Perl
|
||||||
our $glob_cygwin_perl= 0; # Cygwin Perl
|
our $glob_cygwin_perl= 0; # Cygwin Perl
|
||||||
our $glob_cygwin_shell= undef;
|
|
||||||
our $glob_mysql_test_dir= undef;
|
our $glob_mysql_test_dir= undef;
|
||||||
our $glob_mysql_bench_dir= undef;
|
our $glob_mysql_bench_dir= undef;
|
||||||
our $glob_hostname= undef;
|
our $glob_hostname= undef;
|
||||||
|
@ -464,10 +463,7 @@ sub initial_setup () {
|
||||||
{
|
{
|
||||||
# Windows programs like 'mysqld' needs Windows paths
|
# Windows programs like 'mysqld' needs Windows paths
|
||||||
$glob_mysql_test_dir= `cygpath -m "$glob_mysql_test_dir"`;
|
$glob_mysql_test_dir= `cygpath -m "$glob_mysql_test_dir"`;
|
||||||
my $shell= $ENV{'SHELL'} || "/bin/bash";
|
|
||||||
$glob_cygwin_shell= `cygpath -w "$shell"`; # The Windows path c:\...
|
|
||||||
chomp($glob_mysql_test_dir);
|
chomp($glob_mysql_test_dir);
|
||||||
chomp($glob_cygwin_shell);
|
|
||||||
}
|
}
|
||||||
$glob_basedir= dirname($glob_mysql_test_dir);
|
$glob_basedir= dirname($glob_mysql_test_dir);
|
||||||
$glob_mysql_bench_dir= "$glob_basedir/mysql-bench"; # FIXME make configurable
|
$glob_mysql_bench_dir= "$glob_basedir/mysql-bench"; # FIXME make configurable
|
||||||
|
|
Loading…
Reference in a new issue