freebsd-ports/devel/gnome-vfs1/files/patch-libgnomevfs_gnome-vfs-utils.c
Joe Marcus Clarke c330c80945 Fix a problem with MIME types and file type icon support.
Prompted by:	Franz Klammer <klammer@webonaut.com>
2002-05-05 20:56:12 +00:00

12 lines
531 B
C

--- libgnomevfs/gnome-vfs-utils.c.orig Sun May 5 16:42:00 2002
+++ libgnomevfs/gnome-vfs-utils.c Sun May 5 16:42:15 2002
@@ -771,7 +771,7 @@
paths = g_strsplit (gnome_var, ":", 0);
for (temp_paths = paths; *temp_paths != NULL; temp_paths++) {
- full_filename = g_strconcat (*temp_paths, "/share/pixmaps/", relative_filename, NULL);
+ full_filename = g_strconcat (*temp_paths, "/share/gnome/pixmaps/", relative_filename, NULL);
if (hack_file_exists (full_filename)) {
g_strfreev (paths);
return full_filename;