mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03: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:
@ -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/
|
||||
|
Reference in New Issue
Block a user