diff options
author | unknown <elliot@mysql.com> | 2006-06-15 22:46:52 -0400 |
---|---|---|
committer | unknown <elliot@mysql.com> | 2006-06-15 22:46:52 -0400 |
commit | 59d38c15bc8c010fcff11cdf72f497fd957a1ef6 (patch) | |
tree | 4f912e048e2f4a192de9d4e5ca3bc2502175e9b5 /win | |
parent | 1ab93b89260b96ba3f7ef6a174653157af0bdd51 (diff) | |
download | mariadb-git-59d38c15bc8c010fcff11cdf72f497fd957a1ef6.tar.gz |
Fixing false alarm errors on windows build from a clean clone.
win/build-vs71.bat:
Don't trigger 'could not find the file specified' errors when
running from a clean clone.
win/build-vs8.bat:
Don't trigger 'could not find the file specified' errors when
running from a clean clone.
Diffstat (limited to 'win')
-rw-r--r-- | win/build-vs71.bat | 2 | ||||
-rw-r--r-- | win/build-vs8.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/win/build-vs71.bat b/win/build-vs71.bat index 46f3bc32f6e..959067695c5 100644 --- a/win/build-vs71.bat +++ b/win/build-vs71.bat @@ -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 diff --git a/win/build-vs8.bat b/win/build-vs8.bat index 349c3e78628..d9c06241a9b 100644 --- a/win/build-vs8.bat +++ b/win/build-vs8.bat @@ -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 |