summaryrefslogtreecommitdiffstats
path: root/cmake/build.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/build.cmake')
-rw-r--r--cmake/build.cmake7
1 files changed, 3 insertions, 4 deletions
diff --git a/cmake/build.cmake b/cmake/build.cmake
index 94eb4c1..b0d803a 100644
--- a/cmake/build.cmake
+++ b/cmake/build.cmake
@@ -57,11 +57,10 @@ if (BAZAAR_FOUND)
)
if (${_retcode} EQUAL 0)
- set(_last_output ${_output})
string(REGEX REPLACE "^(.*\n)?committer: ([^\n]+).*"
- "\\2" PCILIB_REVISION_AUTHOR "${_last_output}" )
+ "\\2" PCILIB_REVISION_AUTHOR "${_output}" )
string(REGEX REPLACE "^(.*\n)?branch nick: ([^\n]+).*"
- "\\2" PCILIB_REVISION_BRANCH "${_last_output}" )
+ "\\2" PCILIB_REVISION_BRANCH "${_output}" )
endif (${_retcode} EQUAL 0)
endif (${_retcode} EQUAL 0)
@@ -75,7 +74,7 @@ if (BAZAAR_FOUND)
)
if (${_retcode} EQUAL 0)
- string(REGEX REPLACE "\n+" ";" PCILIB_REVISION_MODIFICATIONS ${_output})
+ string(REGEX REPLACE "\n+" ";" PCILIB_REVISION_MODIFICATIONS "${_output}")
# set(PCILIB_REVISION_MODIFICATIONS ${_output})
endif (${_retcode} EQUAL 0)
endif(BAZAAR_FOUND)