summaryrefslogtreecommitdiff
path: root/databases/cassandra-cpp-driver/Makefile
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2020-05-07 08:06:51 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2020-05-07 08:06:51 +0000
commite238a62ea2a8fe412ec5ebf25ebf990d2a3214b7 (patch)
treed6c8afbf9de789ff6f1fdaefe748a4b119b9f29e /databases/cassandra-cpp-driver/Makefile
parentscience/nwchem: Update to 7.0.0-release (diff)
databases/cassandra-cpp-driver: fix build
In the last commit I removed a patch that excluded -Werror from the compiler flags. It was building on amd64, but apparently it breaks on the cluster. This commit restores the removal of -Werror.
Notes
Notes: svn path=/head/; revision=534252
Diffstat (limited to '')
-rw-r--r--databases/cassandra-cpp-driver/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/databases/cassandra-cpp-driver/Makefile b/databases/cassandra-cpp-driver/Makefile
index 71fef53dc8be..38754022369b 100644
--- a/databases/cassandra-cpp-driver/Makefile
+++ b/databases/cassandra-cpp-driver/Makefile
@@ -31,4 +31,7 @@ PLIST_FILES= include/cassandra.h \
libdata/pkgconfig/cassandra.pc \
libdata/pkgconfig/cassandra_static.pc
+post-patch:
+ ${REINPLACE_CMD} -e 's|-Werror||' ${WRKSRC}/src/CMakeLists.txt
+
.include <bsd.port.mk>