From: SangYoun Kwak Date: Thu, 15 May 2025 04:35:50 +0000 (+0900) Subject: unified-system-plugin: Relocate libunified-system-service-sensord.so X-Git-Tag: accepted/tizen/unified/20250530.090416~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f83f717450de4f6d8b3921e2433d1cc78e88fca5;p=platform%2Fcore%2Fsystem%2Fsensord.git unified-system-plugin: Relocate libunified-system-service-sensord.so The library file libunified-system-service-sensord.so is relocated under 32-bit: /usr/lib/system/plugin 64-bit: /usr/lib64/system/plugin Change-Id: I2bbee446d2680559b308773506dfcfae707b252d Signed-off-by: SangYoun Kwak --- diff --git a/packaging/sensord.spec b/packaging/sensord.spec index b5168e47..7b2a409d 100644 --- a/packaging/sensord.spec +++ b/packaging/sensord.spec @@ -161,7 +161,7 @@ rm -f %{_unitdir}/sockets.target.wants/sensord.socket %{_libdir}/libsensord-shared.so %{_libdir}/sensor/fusion/libsensor-fusion.so %{_libdir}/sensor/physical/libsensor-physical.so -%{_libdir}/libunified-system-service-sensord.so +%{_libdir}/system/plugin/libunified-system-service-sensord.so %config %{_sysconfdir}/sensord/auto_rotation.conf %license LICENSE.APLv2 diff --git a/src/server/CMakeLists.txt b/src/server/CMakeLists.txt index 896d75c5..e7045340 100644 --- a/src/server/CMakeLists.txt +++ b/src/server/CMakeLists.txt @@ -44,4 +44,4 @@ INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR}) SET(LIBRARY_NAME "unified-system-service-sensord") ADD_LIBRARY(${LIBRARY_NAME} SHARED ${SERVER_SRCS}) TARGET_LINK_LIBRARIES(${LIBRARY_NAME} ${SERVER_PKGS_LDFLAGS} ${CMAKE_DL_LIBS} "sensord-shared") -INSTALL(TARGETS ${LIBRARY_NAME} DESTINATION ${LIB_INSTALL_DIR} COMPONENT RuntimeLibraries) +INSTALL(TARGETS ${LIBRARY_NAME} DESTINATION ${LIB_INSTALL_DIR}/system/plugin COMPONENT RuntimeLibraries)