mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Don't use the "4.1 vardir trick" on OS that does not have native symlink(i.e windows)
This commit is contained in:
parent
67bd2842bb
commit
edf668e8fa
1 changed files with 2 additions and 1 deletions
|
@ -758,7 +758,8 @@ sub command_line_setup () {
|
|||
$opt_vardir= $default_vardir;
|
||||
}
|
||||
elsif ( $mysql_version_id < 50000 and
|
||||
$opt_vardir ne $default_vardir )
|
||||
! $glob_win32 and # No supported on platforms without native symlink
|
||||
$opt_vardir ne $default_vardir)
|
||||
{
|
||||
# Version 4.1 and --vardir was specified
|
||||
# Only supported as a symlink from var/
|
||||
|
|
Loading…
Reference in a new issue