[Cmake-commits] CMake branch, next, updated. v3.1.2-1123-ge09df3a

Nils Gladitz nilsgladitz at gmail.com
Mon Feb 9 05:04:14 EST 2015


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  e09df3a8536a8f0e0b426ddeb628ac58d418489b (commit)
       via  220c427e84215b28ea1dd6de74e9dc6e81f7962e (commit)
       via  9bbfe76d2c899fdbb54eb92716aea7282d2f3cce (commit)
       via  d30036cfadb6f5ad927bf5f968f7e93472b50c45 (commit)
       via  8b7e5e599616b6b805d87addc12050a6d6987429 (commit)
      from  19522216e892f73351dc480507040cd453a795cb (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=e09df3a8536a8f0e0b426ddeb628ac58d418489b
commit e09df3a8536a8f0e0b426ddeb628ac58d418489b
Merge: 1952221 220c427
Author:     Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Mon Feb 9 05:04:13 2015 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Feb 9 05:04:13 2015 -0500

    Merge topic 'try_compile-quote-module-path' into next
    
    220c427e try_compile: Quote the content of CMAKE_MODULE_PATH to allow for spaces
    9bbfe76d CMake Nightly Date Stamp
    d30036cf CMake Nightly Date Stamp
    8b7e5e59 CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=220c427e84215b28ea1dd6de74e9dc6e81f7962e
commit 220c427e84215b28ea1dd6de74e9dc6e81f7962e
Author:     Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Mon Feb 9 10:51:22 2015 +0100
Commit:     Nils Gladitz <nilsgladitz at gmail.com>
CommitDate: Mon Feb 9 10:51:22 2015 +0100

    try_compile: Quote the content of CMAKE_MODULE_PATH to allow for spaces

diff --git a/Source/cmCoreTryCompile.cxx b/Source/cmCoreTryCompile.cxx
index 5b5d6b6..c414553 100644
--- a/Source/cmCoreTryCompile.cxx
+++ b/Source/cmCoreTryCompile.cxx
@@ -296,7 +296,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv)
             cmVersion::GetPatchVersion(), cmVersion::GetTweakVersion());
     if(def)
       {
-      fprintf(fout, "set(CMAKE_MODULE_PATH %s)\n", def);
+      fprintf(fout, "set(CMAKE_MODULE_PATH \"%s\")\n", def);
       }
 
     std::string projectLangs;

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

Summary of changes:
 Source/CMakeVersion.cmake   |    2 +-
 Source/cmCoreTryCompile.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list