List:Commits« Previous MessageNext Message »
From:msvensson Date:October 23 2006 1:32pm
Subject:bk commit into 4.1 tree (msvensson:1.2596)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2006-10-23 13:32:20+02:00, msvensson@neptunus.(none) +1 -0
  Don't use the "4.1 vardir trick" on OS that does not have native symlink(i.e windows)

  mysql-test/mysql-test-run.pl@stripped, 2006-10-23 13:32:19+02:00, msvensson@neptunus.(none)
+2 -1
    Don't use the "4.1 vardir trick" on OS that does not have native symlink(i.e windows)

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	msvensson
# Host:	neptunus.(none)
# Root:	/home/msvensson/mysql/mysql-4.1-maint

--- 1.124/mysql-test/mysql-test-run.pl	2006-10-23 13:32:24 +02:00
+++ 1.125/mysql-test/mysql-test-run.pl	2006-10-23 13:32:24 +02:00
@@ -758,7 +758,8 @@
     $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/
Thread
bk commit into 4.1 tree (msvensson:1.2596)msvensson23 Oct