[Cmake-commits] CMake branch, next, updated. v3.2.2-3213-g5499466

Zack Galbreath zack.galbreath at kitware.com
Wed May 27 11:28:59 EDT 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  549946624eb85c6f5e2920f1ac364295f0e4b3a7 (commit)
       via  81b2968c2ae1cff73b0dc7a3c74e9708dab53ea8 (commit)
      from  2c12deb03da59abb4433c5e13491341114a9857f (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=549946624eb85c6f5e2920f1ac364295f0e4b3a7
commit 549946624eb85c6f5e2920f1ac364295f0e4b3a7
Merge: 2c12deb 81b2968
Author:     Zack Galbreath <zack.galbreath at kitware.com>
AuthorDate: Wed May 27 11:28:58 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed May 27 11:28:58 2015 -0400

    Merge topic 'fix_builderror_regexes' into next
    
    81b2968c fix build error regular expressions


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=81b2968c2ae1cff73b0dc7a3c74e9708dab53ea8
commit 81b2968c2ae1cff73b0dc7a3c74e9708dab53ea8
Author:     Zack Galbreath <zack.galbreath at kitware.com>
AuthorDate: Wed May 27 11:23:15 2015 -0400
Commit:     Zack Galbreath <zack.galbreath at kitware.com>
CommitDate: Wed May 27 11:27:26 2015 -0400

    fix build error regular expressions
    
    "No rule to make target" errors were not being detected.
    Removing the escape character before the square brackets
    fixes this problem.

diff --git a/Source/CTest/cmCTestBuildHandler.cxx b/Source/CTest/cmCTestBuildHandler.cxx
index 29e07ef..ccb3e44 100644
--- a/Source/CTest/cmCTestBuildHandler.cxx
+++ b/Source/CTest/cmCTestBuildHandler.cxx
@@ -68,13 +68,13 @@ static const char* cmCTestErrorMatches[] = {
   "^CMake Error.*:",
   ":[ \\t]cannot find",
   ":[ \\t]can't find",
-  ": \\*\\*\\* No rule to make target \\[`'].*\\'.  Stop",
+  ": \\*\\*\\* No rule to make target [`'].*\\'.  Stop",
   ": \\*\\*\\* No targets specified and no makefile found",
   ": Invalid loader fixup for symbol",
   ": Invalid fixups exist",
   ": Can't find library for",
   ": internal link edit command failed",
-  ": Unrecognized option \\[`'].*\\'",
+  ": Unrecognized option [`'].*\\'",
   "\", line [0-9]+\\.[0-9]+: [0-9]+-[0-9]+ \\([^WI]\\)",
   "ld: 0706-006 Cannot find or open library file: -l ",
   "ild: \\(argument error\\) can't find library argument ::",

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

Summary of changes:
 Source/CTest/cmCTestBuildHandler.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list