Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 May 2017 20:12:32 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r441714 - head/mail/spmfilter
Message-ID:  <201705252012.v4PKCWLT099502@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
 



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