[Cmake-commits] CMake branch, next, updated. v2.8.7-2129-g9f8d646

Brad King brad.king at kitware.com
Tue Jan 17 14:05:30 EST 2012


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  9f8d64614c13ebf898b1a5d45b2ea430ce528d88 (commit)
       via  982b5d9eef0b8224c425d60539c3b1fd665062b6 (commit)
      from  f1b2b87d151c3fc4961602c0997c268639566632 (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=9f8d64614c13ebf898b1a5d45b2ea430ce528d88
commit 9f8d64614c13ebf898b1a5d45b2ea430ce528d88
Merge: f1b2b87 982b5d9
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Jan 17 14:05:26 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Jan 17 14:05:26 2012 -0500

    Merge topic 'install-command-cleanup' into next
    
    982b5d9 cmInstallCommand: Fix line length for style


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=982b5d9eef0b8224c425d60539c3b1fd665062b6
commit 982b5d9eef0b8224c425d60539c3b1fd665062b6
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Jan 17 14:03:45 2012 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue Jan 17 14:03:45 2012 -0500

    cmInstallCommand: Fix line length for style
    
    After indentation was fixed by a previous commit some lines became too
    long.  Re-wrap to shorten them.

diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx
index ddc2a94..dca528d 100644
--- a/Source/cmInstallCommand.cxx
+++ b/Source/cmInstallCommand.cxx
@@ -602,11 +602,11 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args)
         break;
       }
 
-    // These well-known sets of files are installed *automatically* for FRAMEWORK
-    // SHARED library targets on the Mac as part of installing the FRAMEWORK.
-    // For other target types or on other platforms, they are not installed
-    // automatically and so we need to create install files generators for them.
-    //
+    // These well-known sets of files are installed *automatically* for
+    // FRAMEWORK SHARED library targets on the Mac as part of installing the
+    // FRAMEWORK.  For other target types or on other platforms, they are not
+    // installed automatically and so we need to create install files
+    // generators for them.
     bool createInstallGeneratorsForTargetFileSets = true;
 
     if(target.IsFrameworkOnApple())
@@ -630,8 +630,8 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args)
         // Create the files install generator.
         if (!privateHeaderArgs.GetDestination().empty())
           {
-          privateHeaderGenerator = CreateInstallFilesGenerator(absFiles,
-                                                      privateHeaderArgs, false);
+          privateHeaderGenerator =
+            CreateInstallFilesGenerator(absFiles, privateHeaderArgs, false);
           }
         else
           {
@@ -656,8 +656,8 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args)
         // Create the files install generator.
         if (!publicHeaderArgs.GetDestination().empty())
           {
-          publicHeaderGenerator = CreateInstallFilesGenerator(absFiles,
-                                                        publicHeaderArgs, false);
+          publicHeaderGenerator =
+            CreateInstallFilesGenerator(absFiles, publicHeaderArgs, false);
           }
         else
           {

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

Summary of changes:
 Source/cmInstallCommand.cxx |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list