File gnome-pilot-no-susepath.patch of Package gnome-pilot
--- libgpilotdCM/gnome-pilot-conduit-management.gob
+++ libgpilotdCM/gnome-pilot-conduit-management.gob
@@ -269,21 +269,17 @@
private GList*
get_conduit_file_names (gchar *path, gchar *ext) {
gchar *gnome_path = NULL;
- const gchar *susepath, *gnome2path;
+ const gchar *gnome2path;
GList *result = NULL;
GDir *dir;
const char *name;
gchar **paths;
int idx;
- susepath = g_getenv ("GNOMEPATH");
gnome2path = g_getenv ("GNOME2_PATH");
- /* Concat SuSE's GNOMEPATH, GNOME2_PATH, and CONDUITDIR
+ /* Concat GNOME2_PATH, and CONDUITDIR
This is so that we can load all conduits in these paths */
gnome_path = g_strconcat (CONDUITDIR, ":",
- susepath ? susepath : "",
- susepath ? "/share" : "",
- ":",
gnome2path ? gnome2path : "",
gnome2path ? "/share": "",
NULL);