[Cmake-commits] CMake branch, next, updated. v2.8.7-2309-g72e1010

Rolf Eike Beer eike at sf-mail.de
Fri Jan 27 13:33:24 EST 2012


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  72e10102575ab9c3bc24939898e11886e4cb2d1c (commit)
       via  57af22c3465c15bc11c1e80095d03b688167e273 (commit)
      from  dde0e456360c35150d79c4e30228ab90f1f3056b (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=72e10102575ab9c3bc24939898e11886e4cb2d1c
commit 72e10102575ab9c3bc24939898e11886e4cb2d1c
Merge: dde0e45 57af22c
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Fri Jan 27 13:32:42 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Jan 27 13:32:42 2012 -0500

    Merge topic 'more-bison-version' into next
    
    57af22c FindBISON: fix regex


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=57af22c3465c15bc11c1e80095d03b688167e273
commit 57af22c3465c15bc11c1e80095d03b688167e273
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Fri Jan 27 19:31:38 2012 +0100
Commit:     Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Fri Jan 27 19:31:38 2012 +0100

    FindBISON: fix regex

diff --git a/Modules/FindBISON.cmake b/Modules/FindBISON.cmake
index 3925071..482ddfe 100644
--- a/Modules/FindBISON.cmake
+++ b/Modules/FindBISON.cmake
@@ -76,7 +76,7 @@ IF(BISON_EXECUTABLE)
       STRING(REGEX REPLACE "^bison \\(GNU Bison\\) ([^\n]+)\n.*" "\\1"
         BISON_VERSION "${BISON_version_output}")
     ELSEIF("${BISON_version_output}" MATCHES "^GNU Bison ")
-      STRING(REGEX REPLACE "^GNU Bison (version )?+([^\n]+)\n.*" "\\2"
+      STRING(REGEX REPLACE "^GNU Bison (version )?([^\n]+)\n.*" "\\2"
         BISON_VERSION "${BISON_version_output}")
     ENDIF()
   ENDIF()

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

Summary of changes:
 Modules/FindBISON.cmake |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list