unified-system-service: Change unified-system-service plugin location 69/324269/1
authorSangYoun Kwak <sy.kwak@samsung.com>
Thu, 15 May 2025 04:39:18 +0000 (13:39 +0900)
committerSangYoun Kwak <sy.kwak@samsung.com>
Thu, 15 May 2025 04:39:18 +0000 (13:39 +0900)
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 <sy.kwak@samsung.com>
unified-system-service/unified-system-service.c

index fcc72b4078dd23f462dd39656a8fdf9779e6fe83..b67fd048ab3c1d6f0175926e9362abb15d2e443f 100644 (file)
@@ -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"