List:Commits« Previous MessageNext Message »
From:Elliot Murphy Date:June 16 2006 4:47am
Subject:bk commit into 5.1 tree (elliot:1.2187)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of emurphy. When emurphy 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
  1.2187 06/06/15 22:46:52 elliot@stripped +2 -0
  Fixing false alarm errors on windows build from a clean clone.

  win/build-vs8.bat
    1.5 06/06/15 22:46:41 elliot@stripped +1 -1
    Don't trigger 'could not find the file specified' errors when 
    running from a clean clone.

  win/build-vs71.bat
    1.5 06/06/15 22:46:40 elliot@stripped +1 -1
    Don't trigger 'could not find the file specified' errors when 
    running from a clean clone.

# 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:	elliot
# Host:	lost.local
# Root:	/Users/emurphy/src/mysql/clean/mysql-5.1

--- 1.4/win/build-vs71.bat	2006-03-15 11:31:48 -05:00
+++ 1.5/win/build-vs71.bat	2006-06-15 22:46:40 -04:00
@@ -1,6 +1,6 @@
 @echo off
 
-del cmakecache.txt
+if exist cmakecache.txt del cmakecache.txt
 copy win\vs71cache.txt cmakecache.txt
 cmake -G "Visual Studio 7 .NET 2003"
 copy cmakecache.txt win\vs71cache.txt

--- 1.4/win/build-vs8.bat	2006-03-15 11:31:48 -05:00
+++ 1.5/win/build-vs8.bat	2006-06-15 22:46:41 -04:00
@@ -1,6 +1,6 @@
 @echo off
 
-del cmakecache.txt
+if exist cmakecache.txt del cmakecache.txt
 copy win\vs8cache.txt cmakecache.txt
 cmake -G "Visual Studio 8 2005"
 copy cmakecache.txt win\vs8cache.txt
Thread
bk commit into 5.1 tree (elliot:1.2187)Elliot Murphy16 Jun