svn commit: r398633 - in head/devel/automake: . files
Tijl Coosemans
tijl at FreeBSD.org
Mon Oct 5 10:14:46 UTC 2015
Author: tijl
Date: Mon Oct 5 10:14:45 2015
New Revision: 398633
URL: https://svnweb.freebsd.org/changeset/ports/398633
Log:
Add a patch for perl 5.22 which warns that unescaped left braces in
regular expressions are deprecated.
PR: 202986
Submitted by: brnrd
Added:
head/devel/automake/files/patch-bin-automake.in (contents, props changed)
Modified:
head/devel/automake/Makefile
Modified: head/devel/automake/Makefile
==============================================================================
--- head/devel/automake/Makefile Mon Oct 5 09:37:54 2015 (r398632)
+++ head/devel/automake/Makefile Mon Oct 5 10:14:45 2015 (r398633)
@@ -3,6 +3,7 @@
PORTNAME= automake
PORTVERSION= 1.15
+PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= GNU
Added: head/devel/automake/files/patch-bin-automake.in
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/automake/files/patch-bin-automake.in Mon Oct 5 10:14:45 2015 (r398633)
@@ -0,0 +1,11 @@
+--- bin/automake.in.orig 2015-01-05 19:25:55 UTC
++++ bin/automake.in
+@@ -3878,7 +3878,7 @@ sub substitute_ac_subst_variables_worker
+ sub substitute_ac_subst_variables
+ {
+ my ($text) = @_;
+- $text =~ s/\${([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
++ $text =~ s/\$\{([^ \t=:+{}]+)\}/substitute_ac_subst_variables_worker ($1)/ge;
+ return $text;
+ }
+
More information about the svn-ports-all
mailing list