summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorLeandro Pereira <leandro@hardinfo.org>2012-01-27 09:38:24 -0200
committerLeandro Pereira <leandro@hardinfo.org>2012-01-27 09:38:24 -0200
commitcd7e7199a885327e4594e88b9b3fdddbb8fd2cee (patch)
tree8b612d7c26471e8e94523335ef6200beddf6f333 /modules
parent204118eff1c73234d89be9530226208a3ccb9f03 (diff)
Remove "lib" prefix from modules
Diffstat (limited to 'modules')
-rw-r--r--modules/benchmark.c4
-rw-r--r--modules/computer.c2
-rw-r--r--modules/devices.c2
3 files changed, 4 insertions, 4 deletions
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;
}