diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2013-10-24 14:23:53 +0000 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2013-10-24 14:23:53 +0000 |
commit | 8eae7be17a9d933c4e8add9c688c0db0152f2016 (patch) | |
tree | 47713cc8fcec1661a0fce798d72a78af21bc2294 /ftp | |
parent | a0975d5bf6251667cfb40b7ee2a9db69b6bdfb83 (diff) | |
download | ports-8eae7be17a9d933c4e8add9c688c0db0152f2016.tar.gz ports-8eae7be17a9d933c4e8add9c688c0db0152f2016.zip |
Fix compilation of ftp/wget when perl 5.18 is installed.
Patch from upstream repo suggested by Anton Yuzhaninov <citrin@citrin.ru>.
PR: ports/182159
Submitted by: Jeremy Chadwick <jdc@koitsu.org>
Notes
Notes:
svn path=/head/; revision=331489
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/wget/files/patch-doc__texi2pod.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ftp/wget/files/patch-doc__texi2pod.pl b/ftp/wget/files/patch-doc__texi2pod.pl new file mode 100644 index 000000000000..45a8873a9e72 --- /dev/null +++ b/ftp/wget/files/patch-doc__texi2pod.pl @@ -0,0 +1,11 @@ +--- doc/texi2pod.pl.orig 2013-10-24 16:59:55.000000000 +0300 ++++ doc/texi2pod.pl 2013-10-24 17:01:23.000000000 +0300 +@@ -291,7 +291,7 @@ + if (defined $1) { + my $thing = $1; + if ($ic =~ /\@asis/) { +- $_ = "\n=item $thing\n"; ++ $_ = "\n=item C<$thing>\n"; + } else { + # Entity escapes prevent munging by the <> processing below. + $_ = "\n=item $ic\<$thing\>\n"; |