Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 May 2016 12:09:50 +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: r416194 - in head/devel/autoconf: . files
Message-ID:  <201605311209.u4VC9oDd096117@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Tue May 31 12:09:49 2016
New Revision: 416194
URL: https://svnweb.freebsd.org/changeset/ports/416194

Log:
  Fix autoscan script with newer versions of Perl (escape left brace in regex)
  
  PR:		209768
  Submitted by:	mat

Added:
  head/devel/autoconf/files/patch-bin-autoscan.in   (contents, props changed)
Modified:
  head/devel/autoconf/Makefile

Modified: head/devel/autoconf/Makefile
==============================================================================
--- head/devel/autoconf/Makefile	Tue May 31 12:03:06 2016	(r416193)
+++ head/devel/autoconf/Makefile	Tue May 31 12:09:49 2016	(r416194)
@@ -3,6 +3,7 @@
 
 PORTNAME=	autoconf
 PORTVERSION=	2.69
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	GNU
 DISTNAME=	autoconf-${PORTVERSION}

Added: head/devel/autoconf/files/patch-bin-autoscan.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/autoconf/files/patch-bin-autoscan.in	Tue May 31 12:09:49 2016	(r416194)
@@ -0,0 +1,11 @@
+--- bin/autoscan.in.orig	2012-04-25 02:37:26 UTC
++++ bin/autoscan.in
+@@ -358,7 +358,7 @@ sub scan_sh_file ($)
+     {
+       # Strip out comments and variable references.
+       s/#.*//;
+-      s/\${[^\}]*}//g;
++      s/\$\{[^\}]*}//g;
+       s/@[^@]*@//g;
+ 
+       # Tokens in the code.



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