Blame SOURCES/wget-1.14-texi2pod_error_perl518.patch

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