diff options
author | bapt <bapt@FreeBSD.org> | 2017-05-26 04:12:32 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2017-05-26 04:12:32 +0800 |
commit | 6ff13eed476325c35d939573217bd94a4e0cb159 (patch) | |
tree | 9b0379a4b224f87e42198aea32cd051c678c458b /mail | |
parent | 7d5dc67a216fe4bc764093b7d4b8a1b8c3bb9c1c (diff) | |
download | freebsd-ports-gnome-6ff13eed476325c35d939573217bd94a4e0cb159.tar.gz freebsd-ports-gnome-6ff13eed476325c35d939573217bd94a4e0cb159.tar.zst freebsd-ports-gnome-6ff13eed476325c35d939573217bd94a4e0cb159.zip |
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)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/spmfilter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/spmfilter/Makefile b/mail/spmfilter/Makefile index fbfeaabebea2..7a24a53a9e01 100644 --- a/mail/spmfilter/Makefile +++ b/mail/spmfilter/Makefile @@ -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 |