summaryrefslogtreecommitdiffstats
path: root/CMakeScripts/inkscape-version.cmake
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2016-12-02 23:46:54 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2016-12-02 23:46:54 +0000
commitd11c2cb1902dfa00cb38cab81417272394e88a23 (patch)
tree1f02805fa14ca132e431cfa49783e72dca039c60 /CMakeScripts/inkscape-version.cmake
parentImprove precision of offset_cubic (diff)
downloadinkscape-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.cmake2
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})