summaryrefslogtreecommitdiff
path: root/make-bsd.mk
diff options
context:
space:
mode:
authorDave Cottlehuber <[email protected]>2019-11-19 16:45:06 +0000
committerDave Cottlehuber <[email protected]>2019-11-19 16:45:06 +0000
commit8396f16dd2d26aece025e4a939d81340c4860ba9 (patch)
tree6b273f5a95eb988d38b9a9b8242d5249675a1f71 /make-bsd.mk
parentbad95d7c675f04aa10773d46901d65342382c03c (diff)
drop -Werror from DEBUG builds
Appease compilers. Thanks @glimberg for the diff. Closes #1086
Diffstat (limited to 'make-bsd.mk')
-rw-r--r--make-bsd.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-bsd.mk b/make-bsd.mk
index 8c7a6ad2..62a6d73e 100644
--- a/make-bsd.mk
+++ b/make-bsd.mk
@@ -13,7 +13,7 @@ ifeq ($(ZT_SANITIZE),1)
endif
# "make debug" is a shortcut for this
ifeq ($(ZT_DEBUG),1)
- CFLAGS+=-Wall -Werror -g -pthread $(INCLUDES) $(DEFS)
+ CFLAGS+=-Wall -g -pthread $(INCLUDES) $(DEFS)
LDFLAGS+=
STRIP=echo
ZT_TRACE=1