- Add patch:
* fec-fix-cmake-pkgconfig-whitespace.patch
Recent rpm version do not like the quotes around version
in the pkgconfig file.
OBS-URL: https://build.opensuse.org/request/show/568558
OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/fec?expand=0&rev=8
14 lines
359 B
Diff
14 lines
359 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index f842504..2d2e854 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -34,7 +34,7 @@ include(Version)
|
|
|
|
if(NOT DEFINED VERSION)
|
|
#set(VERSION "\"${VERSION_INFO_MAJOR}.${VERSION_INFO_MINOR}.${VERSION_INFO_PATCH}\"")
|
|
- set(VERSION "\"${VERSION_INFO}\"")
|
|
+ set(VERSION "${VERSION_INFO}")
|
|
endif()
|
|
|
|
|