[Cmake-commits] CMake branch, next, updated. v2.8.3-1561-gf4902c9
David Cole
david.cole at kitware.com
Thu Feb 3 10:23:51 EST 2011
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, next has been updated
via f4902c9c2a9f41ed65d8f6b8d26014bbad18812f (commit)
via c310450daf346aafe1e9b230752952228a7e7815 (commit)
via 26eba9cb9c1cbdc7739a9a26aeb4b8f00802f56d (commit)
from abed95d8e5af35d2c46434245b31eba01910ceb0 (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=f4902c9c2a9f41ed65d8f6b8d26014bbad18812f
commit f4902c9c2a9f41ed65d8f6b8d26014bbad18812f
Merge: abed95d c310450
Author: David Cole <david.cole at kitware.com>
AuthorDate: Thu Feb 3 10:23:43 2011 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Feb 3 10:23:43 2011 -0500
Merge topic 'fix-clang-warnings' into next
c310450 Silence the may be used uninitialized warnings: initialize stuff.
26eba9c KWSys Nightly Date Stamp
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c310450daf346aafe1e9b230752952228a7e7815
commit c310450daf346aafe1e9b230752952228a7e7815
Author: David Cole <david.cole at kitware.com>
AuthorDate: Thu Feb 3 10:21:32 2011 -0500
Commit: David Cole <david.cole at kitware.com>
CommitDate: Thu Feb 3 10:21:32 2011 -0500
Silence the may be used uninitialized warnings: initialize stuff.
diff --git a/Source/CPack/cmCPackOSXX11Generator.cxx b/Source/CPack/cmCPackOSXX11Generator.cxx
index 2d4bb97..0e8cbc0 100644
--- a/Source/CPack/cmCPackOSXX11Generator.cxx
+++ b/Source/CPack/cmCPackOSXX11Generator.cxx
@@ -150,7 +150,7 @@ int cmCPackOSXX11Generator::PackageFiles()
// since we get random dashboard failures with this one
// try running it more than once
int numTries = 4;
- bool res;
+ bool res = false;
while(numTries > 0)
{
res = cmSystemTools::RunSingleCommand(dmgCmd.str().c_str(), &output,
diff --git a/Source/CPack/cmCPackPackageMakerGenerator.cxx b/Source/CPack/cmCPackPackageMakerGenerator.cxx
index ef81da8..0c4b1a6 100644
--- a/Source/CPack/cmCPackPackageMakerGenerator.cxx
+++ b/Source/CPack/cmCPackPackageMakerGenerator.cxx
@@ -320,7 +320,7 @@ int cmCPackPackageMakerGenerator::PackageFiles()
std::string output;
int retVal = 1;
int numTries = 4;
- bool res;
+ bool res = false;
while(numTries > 0)
{
res = cmSystemTools::RunSingleCommand(dmgCmd.str().c_str(), &output,
-----------------------------------------------------------------------
Summary of changes:
Source/CPack/cmCPackOSXX11Generator.cxx | 2 +-
Source/CPack/cmCPackPackageMakerGenerator.cxx | 2 +-
Source/kwsys/kwsysDateStamp.cmake | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list