From c8f004de594db6ae8c851afb356decc2025bbf99 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Tue, 31 May 2016 19:38:08 +0100 Subject: [PATCH] Fix FTBFS with newer gcc 4.6 Origin: vendor Forwarded: no Last-Update: 2014-10-09 Using -Werror on a released project is in general not a good idea, as changes in the toolchain and environment can trigger unexpected build failures. Gbp-Pq: Name 04_no_Werror.patch --- harness/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harness/Makefile b/harness/Makefile index 2a88e71..6f1f3a1 100644 --- a/harness/Makefile +++ b/harness/Makefile @@ -6,7 +6,7 @@ PROGS:=$(PARTPROGS) $(EXTRAPROGS) HARNESS_SRCS:=main.c # io_queue.c -CFLAGS+=-Wall -Werror -I../src -g -O +CFLAGS+=-Wall -I../src -g -O #-lpthread -lrt all: $(PROGS) -- 2.30.2