]> git.pld-linux.org Git - packages/rox.git/blob - rox-fix-mime-info-path.patch
- updated to 1.3.3
[packages/rox.git] / rox-fix-mime-info-path.patch
1 diff -urN aaa/rox-1.3.1/ROX-Filer/src/type.c rox-1.3.1/ROX-Filer/src/type.c
2 --- aaa/rox-1.3.1/ROX-Filer/src/type.c  Mon May 27 18:06:18 2002
3 +++ rox-1.3.1/ROX-Filer/src/type.c      Fri Jun  7 21:46:25 2002
4 @@ -947,6 +947,10 @@
5         path = "/usr/share/mime/mime-info";
6         if (mc_stat(path, &info) == 0)
7                 filer_opendir(path, NULL);
8 +
9 +       path = "/usr/X11R6/share/mime-info";
10 +         if (mc_stat(path, &info) == 0)
11 +                           filer_opendir(path, NULL);
12  }
13  
14  static void reread_mime_files(guchar *unused)
15 @@ -1256,6 +1260,8 @@
16         import_for_dir("/usr/share/mime/mime-info", globs, &got_freedesk);
17  
18         import_for_dir("/usr/local/share/mime/mime-info", globs, &got_freedesk);
19 +
20 +       import_for_dir("/usr/X11R6/share/mime-info", globs, &got_freedesk);
21  
22         tmp = g_strconcat(home_dir, "/.mime/mime-info", NULL);
23         import_for_dir(tmp, globs, &got_freedesk);
This page took 0.026538 seconds and 3 git commands to generate.