File: fix-pod-paths.patch

package info (click to toggle)
libinline-c-perl 0.78-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 620 kB
  • sloc: perl: 2,036; makefile: 2; ansic: 2
file content (27 lines) | stat: -rw-r--r-- 986 bytes parent folder | download | duplicates (6)
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
Description: fix paths to match Debian FHS
 As lintian says:
  The manual page references a directory that is specified
  in the FSSTND but not in the FHS which is used by Debian.
  This can be an indicator of a mismatch of the location of
  files as installed for Debian and as described by the man
  page.
Origin: vendor
Forwarded: not-needed
Author: Jonathan Yu <jawnsy@cpan.org>
Reviewed-by: Nicholas Bamber <nicholas@periapt.co.uk>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2014-07-24

--- a/lib/Inline/C/Cookbook.pod
+++ b/lib/Inline/C/Cookbook.pod
@@ -175,8 +175,8 @@
 
 Running this script produces:
 
-    > perl vowels.pl /usr/dict/words
-    The letters in /usr/dict/words are 37.5% vowels.
+    > perl vowels.pl /usr/share/dict/words
+    The letters in /usr/share/dict/words are 37.5% vowels.
 
 It is very important to note that the examples in this cookbook use C<char *>
 to mean a string. Internally Perl has various mechanisms to deal with strings