diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2016-12-02 23:46:54 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2016-12-02 23:46:54 +0000 |
| commit | d11c2cb1902dfa00cb38cab81417272394e88a23 (patch) | |
| tree | 1f02805fa14ca132e431cfa49783e72dca039c60 /CMakeScripts/inkscape-version.cmake | |
| parent | Improve precision of offset_cubic (diff) | |
| download | inkscape-d11c2cb1902dfa00cb38cab81417272394e88a23.tar.gz inkscape-d11c2cb1902dfa00cb38cab81417272394e88a23.zip | |
prevent use of string concat for compatibility with old cmake
(bzr r15292)
Diffstat (limited to 'CMakeScripts/inkscape-version.cmake')
| -rw-r--r-- | CMakeScripts/inkscape-version.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeScripts/inkscape-version.cmake b/CMakeScripts/inkscape-version.cmake index bbf222b32..11316101f 100644 --- a/CMakeScripts/inkscape-version.cmake +++ b/CMakeScripts/inkscape-version.cmake @@ -22,7 +22,7 @@ if(EXISTS ${INKSCAPE_SOURCE_DIR}/.bzr/) OUTPUT_VARIABLE INKSCAPE_SOURCE_MODIFIED OUTPUT_STRIP_TRAILING_WHITESPACE) if(NOT INKSCAPE_SOURCE_MODIFIED STREQUAL "") - string(CONCAT INKSCAPE_REVISION ${INKSCAPE_REVISION} " " ${INKSCAPE_CUSTOM}) + set(INKSCAPE_REVISION ${INKSCAPE_REVISION} " " ${INKSCAPE_CUSTOM}) endif() endif() message("revision is " ${INKSCAPE_REVISION}) |
