Accepting request 1224903 from home:fmccarthy:branches:devel:libraries:c_c++
Address feedback from previous submission. Fix spec file reference in _service file. OBS-URL: https://build.opensuse.org/request/show/1224903 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/pulsar-client-cpp?expand=0&rev=1
This commit is contained in:
22
library_install_paths_fix.patch
Normal file
22
library_install_paths_fix.patch
Normal file
@@ -0,0 +1,22 @@
|
||||
diff -ruP pulsar-client-cpp-3.6.0.orig/lib/CMakeLists.txt pulsar-client-cpp-3.6.0.new/lib/CMakeLists.txt
|
||||
--- pulsar-client-cpp-3.6.0.orig/lib/CMakeLists.txt 2024-08-29 10:11:24.000000000 -0400
|
||||
+++ pulsar-client-cpp-3.6.0.new/lib/CMakeLists.txt 2024-11-05 07:20:43.601347126 -0500
|
||||
@@ -174,15 +174,15 @@
|
||||
elseif(BUILD_STATIC_LIB)
|
||||
# Install regular libpulsar.a
|
||||
target_link_libraries(pulsarStatic ${COMMON_LIBS})
|
||||
- install(TARGETS pulsarStatic DESTINATION lib)
|
||||
+ install(TARGETS pulsarStatic DESTINATION lib64)
|
||||
endif()
|
||||
|
||||
if (BUILD_STATIC_LIB)
|
||||
- install(TARGETS pulsarStatic DESTINATION lib)
|
||||
+ install(TARGETS pulsarStatic DESTINATION lib64)
|
||||
endif()
|
||||
|
||||
if (BUILD_DYNAMIC_LIB)
|
||||
- install(TARGETS pulsarShared RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)
|
||||
+ install(TARGETS pulsarShared RUNTIME DESTINATION bin LIBRARY DESTINATION lib64 ARCHIVE DESTINATION lib64)
|
||||
endif()
|
||||
|
||||
install(DIRECTORY "../include/pulsar" DESTINATION include)
|
||||
Reference in New Issue
Block a user