[Cmake-commits] CMake branch, master, updated. 9e99ac58793d8e99df37bda06097c76a0649702e

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Apr 28 15:27:28 EDT 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, master has been updated
       via  9e99ac58793d8e99df37bda06097c76a0649702e (commit)
      from  46bc8fc739c3b5873fd5d585ddd614ca4a6c3cde (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9e99ac58793d8e99df37bda06097c76a0649702e
commit 9e99ac58793d8e99df37bda06097c76a0649702e
Author: Brad King <brad.king at kitware.com>
Date:   Wed Apr 28 14:48:34 2010 -0400

    Fix .pdb name attribute in VS project files
    
    The PDB file name for VCLinkerTool is specified by the xml attribute
    "ProgramDatabaseFile", not "ProgramDataBaseFile" (note the lower-case
    character 'b').  VS seems to cope with the incorrect capitalization but
    the combination of VS 7.1 and Incredibuild does not.  See issue #10614.

diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 8249d9e..2d8197c 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -980,7 +980,7 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
     temp = target.GetDirectory(configName);
     temp += "/";
     temp += targetNamePDB;
-    fout << "\t\t\t\tProgramDataBaseFile=\"" <<
+    fout << "\t\t\t\tProgramDatabaseFile=\"" <<
       this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
     if(isDebug)
       {
@@ -1055,7 +1055,7 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
     fout << "\"\n";
     std::string path = this->ConvertToXMLOutputPathSingle(
       target.GetDirectory(configName).c_str());
-    fout << "\t\t\t\tProgramDataBaseFile=\""
+    fout << "\t\t\t\tProgramDatabaseFile=\""
          << path << "/" << targetNamePDB
          << "\"\n";
     if(isDebug)

-----------------------------------------------------------------------

Summary of changes:
 Source/cmLocalVisualStudio7Generator.cxx |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list