Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Feb 2020 19:08:31 +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: r526585 - branches/2020Q1/x11-toolkits/p5-Alien-wxWidgets
Message-ID:  <202002201908.01KJ8VHp022785@repo.freebsd.org>

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

Log:
  MFH: r526580
  
  x11-toolkits/p5-Alien-wxWidgets: remove extraneous escapes
  
  post-patch phase of this port uses sed to replace 'wx-config with
  '${WX_CONFIG:T}. Previously it escaped the ', but this is not necessary in
  this context.
  
  Remove the extraneous escape so that it doesn't get passed through to sed(1)
  as an escape of an ordinary character. This is important as the patch in bug
  #229925 will make such escapes an error to ease transition into a world
  where some escaped-ordinaries will be granted a special meaning.
  
  PR:		240450
  Approved by:	koobs (mentor), bapt (mentor)
  Approved by:	portmgr (maintainer timeout: 4 months)
  Differential Revision:	https://reviews.freebsd.org/D23702
  
  Approved by:	ports-secteam (implicit, future build fix)

Modified:
  branches/2020Q1/x11-toolkits/p5-Alien-wxWidgets/Makefile
Directory Properties:
  branches/2020Q1/   (props changed)

Modified: branches/2020Q1/x11-toolkits/p5-Alien-wxWidgets/Makefile
==============================================================================
--- branches/2020Q1/x11-toolkits/p5-Alien-wxWidgets/Makefile	Thu Feb 20 19:07:24 2020	(r526584)
+++ branches/2020Q1/x11-toolkits/p5-Alien-wxWidgets/Makefile	Thu Feb 20 19:08:31 2020	(r526585)
@@ -26,7 +26,7 @@ CONFIGURE_ARGS=	--wxWidgets-build=0 --wxWidgets-unicod
 
 post-patch:
 	@${REINPLACE_CMD} -e 's/wx-config/${WX_CONFIG:T}/' ${WRKSRC}/Build.PL
-	@${REINPLACE_CMD} -e "s/\'wx-config/\'${WX_CONFIG:T}/" -e "s/lc_r/lpthread/" \
+	@${REINPLACE_CMD} -e "s/'wx-config/'${WX_CONFIG:T}/" -e "s/lc_r/lpthread/" \
 		${WRKSRC}/inc/My/Build/Any_wx_config.pm
 
 post-install:



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