From: Carsten Schoenert Date: Tue, 15 Aug 2023 21:29:09 +0000 (+0200) Subject: KiCadFullVersion: Drop hyphen in the string X-Git-Tag: archive/raspbian/9.0.2+dfsg-1+rpi1~1^2^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=43cf6b8933dd46fcb597f481d8599a7c64b9fd29;p=kicad.git KiCadFullVersion: Drop hyphen in the string We don't want the hyphen in the composed string of KICAD_VERSION_FULL so this string is representing the complete Debian version in the end. Forwarded: Not-Needed Gbp-Pq: Topic debian-hacks Gbp-Pq: Name KiCadFullVersion-Drop-hyphen-in-the-string.patch --- diff --git a/cmake/KiCadFullVersion.cmake b/cmake/KiCadFullVersion.cmake index 1907db44..ae1e773e 100644 --- a/cmake/KiCadFullVersion.cmake +++ b/cmake/KiCadFullVersion.cmake @@ -36,5 +36,5 @@ set( KICAD_VERSION_FULL "${KICAD_VERSION}" ) # Optional user version information defined at configuration. if( KICAD_VERSION_EXTRA ) - set( KICAD_VERSION_FULL "${KICAD_VERSION_FULL}-${KICAD_VERSION_EXTRA}" ) + set( KICAD_VERSION_FULL "${KICAD_VERSION_FULL}${KICAD_VERSION_EXTRA}" ) endif()