From cd7e7199a885327e4594e88b9b3fdddbb8fd2cee Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Fri, 27 Jan 2012 09:38:24 -0200 Subject: Remove "lib" prefix from modules --- modules/benchmark.c | 4 ++-- modules/computer.c | 2 +- modules/devices.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'modules') 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; } -- cgit v1.2.3