projects
/
kicad.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3a6b0f5
)
KiCadFullVersion: Drop hyphen in the string
author
Carsten Schoenert
<c.schoenert@t-online.de>
Tue, 15 Aug 2023 21:29:09 +0000
(23:29 +0200)
committer
Carsten Schoenert
<c.schoenert@t-online.de>
Thu, 16 Nov 2023 19:22:14 +0000
(20:22 +0100)
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
patch
|
blob
|
history
diff --git
a/cmake/KiCadFullVersion.cmake
b/cmake/KiCadFullVersion.cmake
index 1907db44b2736b67b87875bab24e853b18a3bf78..ae1e773e34315086800fd43d0f96b10b5516c375 100644
(file)
--- 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()