]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/wget-1.14-texi2pod-1.patch
asterisk addon: update to 11.13.1
[ipfire-2.x.git] / src / patches / wget-1.14-texi2pod-1.patch
1 Submitted By: Ken Moffat <ken at linuxfromscratch dot org>
2 Date: 2013-06-18
3 Initial Package Version: 1.14
4 Upstream Status: Submitted
5 Origin: Arch
6 Description: Build with perl-5.18.
7
8 http://lists.gnu.org/archive/html/bug-wget/2013-06/msg00046.html
9
10 From 2ed1707b5d8be66feb80cccfe8e11e719b52b99a Mon Sep 17 00:00:00 2001
11 From: Dave Reisner <dreisner@archlinux.org>
12 Date: Mon, 17 Jun 2013 23:31:46 +0530
13 Subject: [PATCH] Fix error in texi2pod intriduced with Perl 5.18
14
15 ---
16
17 diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
18 index 86c4b18..9db6de1 100755
19 --- a/doc/texi2pod.pl
20 +++ b/doc/texi2pod.pl
21 @@ -291,7 +291,7 @@ while(<$inf>) {
22 if (defined $1) {
23 my $thing = $1;
24 if ($ic =~ /\@asis/) {
25 - $_ = "\n=item $thing\n";
26 + $_ = "\n=item C<$thing>\n";
27 } else {
28 # Entity escapes prevent munging by the <> processing below.
29 $_ = "\n=item $ic\&LT;$thing\&GT;\n";
30 --
31 1.8.3.1
32