Blame SOURCES/wget-1.14-texi2pod_error_perl518.patch

87e294
From 7f43748544f26008d0dd337704f02a6ed3200aaf Mon Sep 17 00:00:00 2001
87e294
From: Dave Reisner <dreisner@archlinux.org>
87e294
Date: Mon, 17 Jun 2013 23:31:46 +0530
87e294
Subject: [PATCH] Fix error in texi2pod intriduced with Perl 5.18
87e294
87e294
---
87e294
 doc/texi2pod.pl | 2 +-
87e294
 1 files changed, 1 insertions(+), 1 deletion(-)
87e294
87e294
diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
87e294
index 86c4b18..9db6de1 100755
87e294
--- a/doc/texi2pod.pl
87e294
+++ b/doc/texi2pod.pl
87e294
@@ -291,7 +291,7 @@ while(<$inf>) {
87e294
 	if (defined $1) {
87e294
             my $thing = $1;
87e294
             if ($ic =~ /\@asis/) {
87e294
-                $_ = "\n=item $thing\n";
87e294
+                $_ = "\n=item C<$thing>\n";
87e294
             } else {
87e294
                 # Entity escapes prevent munging by the <> processing below.
87e294
                 $_ = "\n=item $ic\<$thing\>\n";
87e294
-- 
87e294
1.8.1.4
87e294