[Cmake-commits] CMake branch, next, updated. v2.8.12.2-1645-g2f16414

Ben Boeckel ben.boeckel at kitware.com
Fri Feb 21 21:47:59 EST 2014


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  2f164149ce6dfe7c9a5689ef523e9b3c16f69a2f (commit)
       via  366a20c580fee4b5458cd51a4fb0563ebd2ca47e (commit)
      from  8b0b0ee4c227e4a8dad4a12dd7a79abc5c275f54 (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=2f164149ce6dfe7c9a5689ef523e9b3c16f69a2f
commit 2f164149ce6dfe7c9a5689ef523e9b3c16f69a2f
Merge: 8b0b0ee 366a20c
Author:     Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Fri Feb 21 21:47:58 2014 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Feb 21 21:47:58 2014 -0500

    Merge topic 'dev/faster-evis' into next
    
    366a20c5 EVIS: Allow parens in variable names


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=366a20c580fee4b5458cd51a4fb0563ebd2ca47e
commit 366a20c580fee4b5458cd51a4fb0563ebd2ca47e
Author:     Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Fri Feb 21 21:46:58 2014 -0500
Commit:     Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Fri Feb 21 21:46:58 2014 -0500

    EVIS: Allow parens in variable names
    
    Needed for Windows environment variables.

diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index a43d320..cbe1691 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -2977,7 +2977,8 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringNew(
         if(openstack.size() > 1 &&
            !(isalnum(inc) || inc == '/' ||
              inc == '_' || inc == '.' ||
-             inc == '+' || inc == '-'))
+             inc == '+' || inc == '-' ||
+             inc == '(' || inc == ')'))
           {
           errorstr += "Invalid character (\'";
           errorstr += inc;

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

Summary of changes:
 Source/cmMakefile.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list