diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2015-05-27 15:23:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-05-27 15:48:38 (GMT) |
commit | 44a4e54547a817546d3a12ed6ce8f16c62a76be8 (patch) | |
tree | 1fc7493a78e5b003906563f3abef73b9ce55f985 /Source/CTest/cmCTestBuildHandler.cxx | |
parent | d52b5f8835a1768dc3b16e8b8cc465b5f80098ad (diff) | |
download | CMake-44a4e54547a817546d3a12ed6ce8f16c62a76be8.zip CMake-44a4e54547a817546d3a12ed6ce8f16c62a76be8.tar.gz CMake-44a4e54547a817546d3a12ed6ce8f16c62a76be8.tar.bz2 |
ctest_build: Fix regression in GNU make error message matching
The regex update in commit v3.1.2~4^2 (ctest_build: Update GNU make
error message matching, 2015-01-28) broke matching of the messages it
updated. Remove the escape character before the square brackets added
by that commit.
Diffstat (limited to 'Source/CTest/cmCTestBuildHandler.cxx')
-rw-r--r-- | Source/CTest/cmCTestBuildHandler.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestBuildHandler.cxx b/Source/CTest/cmCTestBuildHandler.cxx index 13404a8..c741527 100644 --- a/Source/CTest/cmCTestBuildHandler.cxx +++ b/Source/CTest/cmCTestBuildHandler.cxx @@ -70,13 +70,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 ::", |