svn commit: r469131 - head/math/sundials

Yuri Victorovich yuri at FreeBSD.org
Sat May 5 17:04:54 UTC 2018


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 at 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


More information about the svn-ports-all mailing list