From 4c0a1d87a4d611711896c6fa45978c66cc25d3f3 Mon Sep 17 00:00:00 2001 From: sin Date: Wed, 9 Apr 2014 22:01:30 +0100 Subject: Be less hardcore and don't use -Werror Use -Wno-unused-result as the compiler produces false positives. --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 8603e66..4e4b470 100644 --- a/config.mk +++ b/config.mk @@ -8,5 +8,5 @@ MANPREFIX = $(PREFIX)/man CC = cc LD = $(CC) CPPFLAGS = -CFLAGS = -Wextra -Werror -Wall -Os $(CPPFLAGS) +CFLAGS = -Wextra -Wall -Wno-unused-result -Os $(CPPFLAGS) LDFLAGS = -static -- cgit v1.2.3-54-g00ecf