File: info-path.patch

package info (click to toggle)
octave-parallel 4.0.1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,752 kB
  • sloc: ansic: 23,442; cpp: 6,790; sh: 4,476; makefile: 290; perl: 170; xml: 22
file content (35 lines) | stat: -rw-r--r-- 1,241 bytes parent folder | download
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
27
28
29
30
31
32
33
34
35
Description: Use the correct path for the info file
 This is a Debian-specific patch.
Author: Rafael Laboissiere <rafael@debian.org>
Forwarded: not-needed
Last-Update: 2016-05-07

--- octave-parallel-3.1.0.orig/inst/parallel_doc.m
+++ octave-parallel-3.1.0/inst/parallel_doc.m
@@ -34,25 +34,7 @@ function parallel_doc (keyword)
   ## locate installed documentation
   persistent infopath = "";
   if (isempty (infopath))
-    [local_list, global_list] = pkg ("list");
-    if (! isempty (idx = ...
-                   find (strcmp ("parallel",
-                                 {structcat(1, local_list{:}).name}),
-                         1)))
-      idir = local_list{idx}.dir;
-    elseif (! isempty (idx = ...
-                       find (strcmp ("parallel",
-                                     {structcat(1, global_list{:}).name}),
-                             1)))
-      idir = global_list{idx}.dir;
-    else
-      error ("no installed parallel package found");
-    endif
-    infopath = fullfile (idir, "doc/", "parallel.info");
-    ## allow for .gz
-    if (! exist (infopath, "file"))
-      infopath = strcat (infopath, ".gz");
-    endif
+    infopath = "/usr/share/info/parallel.info.gz";
   endif
 
   ## display info