svn commit: r416188 - head/emulators/qemu/files

Mathieu Arnold mat at FreeBSD.org
Tue May 31 10:18:29 UTC 2016


Author: mat
Date: Tue May 31 10:18:27 2016
New Revision: 416188
URL: https://svnweb.freebsd.org/changeset/ports/416188

Log:
  Fix build with Perl 5.25.1+.
  
  Unescaped left brace in regex is illegal in regex.
  
  With hat:	perl@
  Sponsored by:	Absolight

Added:
  head/emulators/qemu/files/patch-scripts_texi2pod.pl   (contents, props changed)

Added: head/emulators/qemu/files/patch-scripts_texi2pod.pl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/qemu/files/patch-scripts_texi2pod.pl	Tue May 31 10:18:27 2016	(r416188)
@@ -0,0 +1,11 @@
+--- scripts/texi2pod.pl.orig	2015-11-03 20:01:35 UTC
++++ scripts/texi2pod.pl
+@@ -317,7 +317,7 @@ while(<$inf>) {
+ 	@columns = ();
+ 	for $column (split (/\s*\@tab\s*/, $1)) {
+ 	    # @strong{...} is used a @headitem work-alike
+-	    $column =~ s/^\@strong{(.*)}$/$1/;
++	    $column =~ s/^\@strong\{(.*)\}$/$1/;
+ 	    push @columns, $column;
+ 	}
+ 	$_ = "\n=item ".join (" : ", @columns)."\n";


More information about the svn-ports-all mailing list