1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-26 22:52:34 +02:00

Makefile: Disable -Werror=deprecated-declarations on release branch

Change-Id: I6ed27b05b8b11f0ae1bcd331148cd61381edb8a0
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/30373
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Nico Huber 2018-12-22 01:19:50 +01:00
parent 6b9e934fe5
commit 30c4cecd28

View File

@ -63,7 +63,7 @@ CONFIG_DEFAULT_PROGRAMMER_ARGS ?= ''
WARNERROR ?= yes
ifeq ($(WARNERROR), yes)
CFLAGS += -Werror
CFLAGS += -Werror -Wno-error=deprecated-declarations
endif
ifdef LIBS_BASE