diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2017-02-13 21:41:13 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2017-02-13 21:41:13 +0000 |
| commit | 30a0802e0a6ccbb37a76e816aa47ebf08e2b548d (patch) | |
| tree | 01437b1a7f93c9e49b1535a46a06ce68ea30301d /CMakeScripts/inkscape-version.cmake | |
| parent | AboutBox: Remove superfluous space in website URL (diff) | |
| download | inkscape-30a0802e0a6ccbb37a76e816aa47ebf08e2b548d.tar.gz inkscape-30a0802e0a6ccbb37a76e816aa47ebf08e2b548d.zip | |
CMake: Cosmetic fix for version string
(set concatenates arguments with a semicolon ";")
(bzr r15517)
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 11316101f..2e23925c4 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 "") - set(INKSCAPE_REVISION ${INKSCAPE_REVISION} " " ${INKSCAPE_CUSTOM}) + set(INKSCAPE_REVISION "${INKSCAPE_REVISION} ${INKSCAPE_CUSTOM}") endif() endif() message("revision is " ${INKSCAPE_REVISION}) |
