1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: This patch changes the path where
the browser looks for the manual. See Debian
Policy 12.3 and 12.4
Author: Josue Abarca <jmaslibre@debian.org.gt>
Forwarded: not-needed
Last-Update: 2010-02-09
--- a/src/help.c
+++ b/src/help.c
@@ -63,7 +63,7 @@
GError *error = NULL;
/* get the uri to the manual */
- gchar *manualpath = g_build_filename (get_data_dir (), "manual",
+ gchar *manualpath = g_build_filename ("/usr/share/doc/", "denemo-doc",
"denemo-manual.html", NULL);
gchar *manualuri = url?g_strdup(url):g_filename_to_uri (manualpath, NULL, NULL);
|