[Cmake-commits] CMake branch, master, updated. v2.8.2-402-g2eab3b2

KWSys Robot kwrobot at kitware.com
Thu Sep 9 12:40:06 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  2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f (commit)
      from  42dbb43294a229dad30fa1a8d925bdd4c0f47d65 (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=2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f
commit 2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f
Author:     David Cole <David.Cole at kitware.com>
AuthorDate: Thu Sep 9 12:34:07 2010 -0400
Commit:     David Cole <David.Cole at kitware.com>
CommitDate: Thu Sep 9 12:40:04 2010 -0400

    Revert commit: CMake: quote ':' in Windows NMake Makefiles (#9963) -- it was not the right fix and caused mucho other problemo

diff --git a/Source/kwsys/System.c b/Source/kwsys/System.c
index 99d5c05..5d178bf 100644
--- a/Source/kwsys/System.c
+++ b/Source/kwsys/System.c
@@ -84,8 +84,7 @@ 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, 1 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list