svn commit: r441714 - head/mail/spmfilter

Baptiste Daroussin bapt at FreeBSD.org
Thu May 25 20:12:34 UTC 2017


Author: bapt
Date: Thu May 25 20:12:32 2017
New Revision: 441714
URL: https://svnweb.freebsd.org/changeset/ports/441714

Log:
  In EREs, left-brace is not to be interpreted as an ordinary character unless
  escaped. Using an unescaped left-brace as part of an invalid repetition
  specification is undefined behavior.
  
  PR:		219009
  Submitted by:	Kyle Evans <bsdports at kyle-evans.net>
  Approved by:	maintainer timeout (3 weeks)

Modified:
  head/mail/spmfilter/Makefile

Modified: head/mail/spmfilter/Makefile
==============================================================================
--- head/mail/spmfilter/Makefile	Thu May 25 20:03:54 2017	(r441713)
+++ head/mail/spmfilter/Makefile	Thu May 25 20:12:32 2017	(r441714)
@@ -86,7 +86,7 @@ post-patch:
 		${WRKSRC}/cmake/Modules/SMFMacros.cmake
 	@${REINPLACE_CMD} -E -e 's|(HAVE_DB4 )db|\1${BDB_LIB_NAME}|' \
 		${WRKSRC}/cmake/Modules/FindDB4.cmake
-	@${REINPLACE_CMD} -E -e 's|\$${CMAKE_INSTALL_LIBDIR}(/pkgconfig)|$${CMAKE_INSTALL_PREFIX}/libdata\1|' \
+	@${REINPLACE_CMD} -E -e 's|\$$\{CMAKE_INSTALL_LIBDIR\}(/pkgconfig)|$${CMAKE_INSTALL_PREFIX}/libdata\1|' \
 		-e 's|(COMMON_LIBS )db|\1${BDB_LIB_NAME}|' \
 		${WRKSRC}/src/CMakeLists.txt
 


More information about the svn-ports-all mailing list