From: SangYoun Kwak Date: Thu, 15 May 2025 04:39:18 +0000 (+0900) Subject: unified-system-service: Change unified-system-service plugin location X-Git-Tag: accepted/tizen/unified/20250530.090412~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F69%2F324269%2F1;p=platform%2Fhal%2Fapi%2Fcommon.git unified-system-service: Change unified-system-service plugin location The location of plugin library file is changed to plugin directory: 32-bit: /usr/lib/system/plugin/ 64-bit: /usr/lib64/system/plugin/ Change-Id: I8cf09461e7434c54770424f627180bedf85383e2 Signed-off-by: SangYoun Kwak --- diff --git a/unified-system-service/unified-system-service.c b/unified-system-service/unified-system-service.c index fcc72b4..b67fd04 100644 --- a/unified-system-service/unified-system-service.c +++ b/unified-system-service/unified-system-service.c @@ -38,9 +38,9 @@ #define COMMANDLINE_OPTION_SERVICE_PLUGIN "service-plugin" #ifdef LIB64 -#define PLUGIN_LIB_DIR "/usr/lib64" +#define PLUGIN_LIB_DIR "/usr/lib64/system/plugin" #else -#define PLUGIN_LIB_DIR "/usr/lib" +#define PLUGIN_LIB_DIR "/usr/lib/system/plugin" #endif #define PLUGIN_LIB_PREFIX "libunified-system-service"