From 82f9c2cb94a7f79199729b0d6a937710f87a778c Mon Sep 17 00:00:00 2001 From: Andrew Engelbrecht Date: Sun, 29 Jun 2014 20:56:37 -0400 Subject: [PATCH] fix binutils build with new gcc versions disabling -Werror while building binutils ignores the following warnings on systems using -Werror and -Wall by default: -Wunused-value --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0465298..c9677cd 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,8 @@ endef define BINUTILS/Compile $(call Common/Compile,BINUTILS, \ - --target=$(TARGET), \ + --target=$(TARGET) \ + --disable-werror, \ $(MAKE) && $(MAKE) -j1 install \ ) endef -- 2.31.1