1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Josue Abarca <jmaslibre@debian.org>
Date: Fri, 12 Feb 2016 17:06:20 +0100
Subject: Change path of manual
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: 2014-08-17
---
src/ui/help.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ui/help.c b/src/ui/help.c
index f5939d0..3b717df 100644
--- a/src/ui/help.c
+++ b/src/ui/help.c
@@ -57,7 +57,7 @@ browse_manual (DenemoAction * action, DenemoScriptParam * param)
GError *error = NULL;
/* get the uri to the manual */
- gchar *manualpath = g_build_filename (get_system_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);
|