qulogic/gplugin

Parents 0c94a1c16af1
Children 4e5dc8c1175d
this should fix the broken gplugin_manager_add_app_paths i'm seeing in the debian build
--- a/gplugin/tests/test-plugin-manager-paths.c Tue May 19 00:28:01 2015 -0500
+++ b/gplugin/tests/test-plugin-manager-paths.c Tue May 19 00:31:20 2015 -0500
@@ -92,7 +92,7 @@
req = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
/* create and add the paths we are expecting to the table */
- path = g_build_filename(PREFIX, "lib", "gplugin", NULL);
+ path = g_build_filename(PREFIX, LIBDIR, "gplugin", NULL);
g_hash_table_insert(req, path, GINT_TO_POINTER(FALSE));
path = g_build_filename(g_get_user_config_dir(), "gplugin", NULL);
@@ -127,7 +127,7 @@
/* build our table of required paths */
req = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
- path = g_build_filename(prefix, "lib", appname, NULL);
+ path = g_build_filename(prefix, LIBDIR, appname, NULL);
g_hash_table_insert(req, path, GINT_TO_POINTER(FALSE));
path = g_build_filename(g_get_user_config_dir(), appname, "plugins", NULL);