Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 May 2016 10:18:28 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r416188 - head/emulators/qemu/files
Message-ID:  <201605311018.u4VAISR5055450@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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";



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605311018.u4VAISR5055450>