KiCadFullVersion: Drop hyphen in the string
authorCarsten Schoenert <c.schoenert@t-online.de>
Tue, 15 Aug 2023 21:29:09 +0000 (23:29 +0200)
committerCarsten Schoenert <c.schoenert@t-online.de>
Sat, 10 May 2025 09:34:36 +0000 (11:34 +0200)
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

cmake/KiCadFullVersion.cmake

index 1907db44b2736b67b87875bab24e853b18a3bf78..ae1e773e34315086800fd43d0f96b10b5516c375 100644 (file)
@@ -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()