[Cmake-commits] CMake branch, master, updated. v2.8.2-400-gfcbdd31

KWSys Robot kwrobot at kitware.com
Wed Sep 8 18:50:04 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  fcbdd3129e7edec4b07f96662aa21371d671cb83 (commit)
      from  f444b9555f87ec187bff51d48cd29c22ab4a6121 (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=fcbdd3129e7edec4b07f96662aa21371d671cb83
commit fcbdd3129e7edec4b07f96662aa21371d671cb83
Author:     David Cole <David.Cole at kitware.com>
AuthorDate: Wed Sep 8 18:41:21 2010 -0400
Commit:     David Cole <David.Cole at kitware.com>
CommitDate: Wed Sep 8 18:50:03 2010 -0400

    CMake: quote ':' in Windows NMake Makefiles (#9963)

diff --git a/Source/kwsys/System.c b/Source/kwsys/System.c
index 5d178bf..99d5c05 100644
--- a/Source/kwsys/System.c
+++ b/Source/kwsys/System.c
@@ -84,7 +84,8 @@ static int kwsysSystem_Shell__CharNeedsQuotesOnUnix(char c)
 static int kwsysSystem_Shell__CharNeedsQuotesOnWindows(char c)
 {
   return ((c == '\'') || (c == '#') || (c == '&') ||
-          (c == '<') || (c == '>') || (c == '|') || (c == '^'));
+          (c == '<') || (c == '>') || (c == '|') ||
+          (c == '^') || (c == ':'));
 }
 
 /*--------------------------------------------------------------------------*/

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

Summary of changes:
 Source/kwsys/System.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list