diff options
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | modules/benchmark.c | 4 | ||||
-rw-r--r-- | modules/computer.c | 2 | ||||
-rw-r--r-- | modules/devices.c | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0acc7678..e4c872d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -133,6 +133,7 @@ set_source_files_properties( foreach (_module ${HARDINFO_MODULES}) add_library(${_module} MODULE ${MODULE_${_module}_SOURCES}) + set_target_properties(${_module} PROPERTIES PREFIX "") endforeach() add_library(hardinfo-remote STATIC diff --git a/modules/benchmark.c b/modules/benchmark.c index 23eee038..9d4e80d7 100644 --- a/modules/benchmark.c +++ b/modules/benchmark.c @@ -342,7 +342,7 @@ static void do_benchmark(void (*benchmark_function)(void), int entry) if (params.gui_running && !sending_benchmark_results) { gchar *argv[] = { params.argv0, "-b", entries[entry].name, - "-m", "libbenchmark.so", "-a", NULL }; + "-m", "benchmark.so", "-a", NULL }; GPid bench_pid; gint bench_stdout; GtkWidget *bench_dialog; @@ -639,7 +639,7 @@ void hi_module_init(void) gchar **hi_module_get_dependencies(void) { - static gchar *deps[] = { "libdevices.so", NULL }; + static gchar *deps[] = { "devices.so", NULL }; return deps; } diff --git a/modules/computer.c b/modules/computer.c index 8656b361..235d642f 100644 --- a/modules/computer.c +++ b/modules/computer.c @@ -612,7 +612,7 @@ guchar hi_module_get_weight(void) gchar **hi_module_get_dependencies(void) { - static gchar *deps[] = { "libdevices.so", NULL }; + static gchar *deps[] = { "devices.so", NULL }; return deps; } diff --git a/modules/devices.c b/modules/devices.c index 8e2daa27..5f1e61d5 100644 --- a/modules/devices.c +++ b/modules/devices.c @@ -471,7 +471,7 @@ ModuleAbout *hi_module_get_about(void) gchar **hi_module_get_dependencies(void) { - static gchar *deps[] = { "libcomputer.so", NULL }; + static gchar *deps[] = { "computer.so", NULL }; return deps; } |