Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Feb 2020 19:06:39 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r526583 - branches/2020Q1/www/foswiki
Message-ID:  <202002201906.01KJ6dG1022318@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Thu Feb 20 19:06:39 2020
New Revision: 526583
URL: https://svnweb.freebsd.org/changeset/ports/526583

Log:
  MFH: r526577
  
  www/foswiki: remove redundant escape
  
  = does not need to be escaped in this context; bug #229925 will make this
  escape as well as the escape of most ordinary characters an error to reduce
  friction when some of these ordinary characters are later granted special
  GNU-extended behavior.
  
  No functional change, no need to bump PORTREVISION.
  
  PR:		240309
  Approved by:	koobs (mentor), bapt (mentor)
  Approved by:	portmgr (maintainer timeout: 4 months)
  Differential Revision:	https://reviews.freebsd.org/D23698
  
  Approved by:	ports-secteam (implicit, future build fix)

Modified:
  branches/2020Q1/www/foswiki/Makefile
Directory Properties:
  branches/2020Q1/   (props changed)

Modified: branches/2020Q1/www/foswiki/Makefile
==============================================================================
--- branches/2020Q1/www/foswiki/Makefile	Thu Feb 20 19:05:03 2020	(r526582)
+++ branches/2020Q1/www/foswiki/Makefile	Thu Feb 20 19:06:39 2020	(r526583)
@@ -64,7 +64,7 @@ post-patch:
 	@cd ${WRKSRC} && \
 		${REINPLACE_CMD} -i "" \
 		-e "s|^#[[:space:]]*\(.*\)/home/httpd/foswiki|\1${WWWDIR}|g" \
-		-e "s|^#[[:space:]]*\(.*\)\(\= \'/foswiki/\)|\1\2|g" \
+		-e "s|^#[[:space:]]*\(.*\)\(= '/foswiki/\)|\1\2|g" \
 		-e "s|/bin/grep|/usr/bin/grep|g" \
 		lib/Foswiki.spec
 	@cd ${WRKSRC} && \



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