Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/30373
Change subject: Makefile: Disable `-Werror=deprecated-declarations` on release branch ......................................................................
Makefile: Disable `-Werror=deprecated-declarations` on release branch
Change-Id: I6ed27b05b8b11f0ae1bcd331148cd61381edb8a0 Signed-off-by: Nico Huber nico.h@gmx.de --- M Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/73/30373/1
diff --git a/Makefile b/Makefile index 9cf52b2..7fcccd8 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ WARNERROR ?= yes
ifeq ($(WARNERROR), yes) -CFLAGS += -Werror +CFLAGS += -Werror -Wno-error=deprecated-declarations endif
ifdef LIBS_BASE