Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 May 2018 17:04:53 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r469131 - head/math/sundials
Message-ID:  <201805051704.w45H4rhi050502@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat May  5 17:04:53 2018
New Revision: 469131
URL: https://svnweb.freebsd.org/changeset/ports/469131

Log:
  math/sundials: Fix build on 12
  
  The previous patching was incomplete, missing another symbol that was aligned with quote characters.
  
  PR:		227995
  Reported by:	Robert Cina <transitive@gmail.com>

Modified:
  head/math/sundials/Makefile

Modified: head/math/sundials/Makefile
==============================================================================
--- head/math/sundials/Makefile	Sat May  5 16:55:15 2018	(r469130)
+++ head/math/sundials/Makefile	Sat May  5 17:04:53 2018	(r469131)
@@ -69,7 +69,7 @@ SUPERLUMT_PREVENTS=	LAPACK  # LAPACK requires SUNDIALS
 PORTEXAMPLES=	*
 
 post-patch:
-	@${FIND} ${WRKSRC}/examples -name "*.c" -o -name "*.cpp" | ${XARGS} ${REINPLACE_CMD} -e 's|"ESYM"|" ESYM "|g'
+	@${FIND} ${WRKSRC}/examples -name "*.c" -o -name "*.cpp" | ${XARGS} ${REINPLACE_CMD} -E 's/"(ESYM|FSYM)"/" \1 "/g'
 
 post-install:
 	@${RM} ${STAGEDIR}${PREFIX}/LICENSE



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