summaryrefslogtreecommitdiff
path: root/emulators/qemu/files
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-05-31 10:18:27 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-05-31 10:18:27 +0000
commitea98dfade6c95fa46c97eb1d9880cff0e4f37ba4 (patch)
treed5332bc583f4abde9ccdec3e5abb8e50df82a5ed /emulators/qemu/files
parentImport upstream patch to fix regression in app_queue module. (diff)
Fix build with Perl 5.25.1+.
Unescaped left brace in regex is illegal in regex. With hat: perl@ Sponsored by: Absolight
Notes
Notes: svn path=/head/; revision=416188
Diffstat (limited to 'emulators/qemu/files')
-rw-r--r--emulators/qemu/files/patch-scripts_texi2pod.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/emulators/qemu/files/patch-scripts_texi2pod.pl b/emulators/qemu/files/patch-scripts_texi2pod.pl
new file mode 100644
index 000000000000..451c54609e5e
--- /dev/null
+++ b/emulators/qemu/files/patch-scripts_texi2pod.pl
@@ -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";