Date: Mon, 5 Oct 2015 10:14:46 +0000 (UTC) From: Tijl Coosemans <tijl@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398633 - in head/devel/automake: . files Message-ID: <201510051014.t95AEkNn061030@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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; + } +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510051014.t95AEkNn061030>