summaryrefslogtreecommitdiffstats
path: root/util/ich_descriptors_tool
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2022-08-23 18:07:54 +0200
committerThomas Heijligen <src@posteo.de>2022-08-25 18:56:27 +0000
commit907407830ed5597ea640012a2bc078c2c0d0d730 (patch)
tree092c0a94ef929ea426bc6c7973fa43b81bae3ea4 /util/ich_descriptors_tool
parent8f9e910eb342799c582ee2c9569ffb4be6296719 (diff)
downloadflashrom-907407830ed5597ea640012a2bc078c2c0d0d730.tar.gz
flashrom-907407830ed5597ea640012a2bc078c2c0d0d730.tar.bz2
flashrom-907407830ed5597ea640012a2bc078c2c0d0d730.zip
ich_descriptors_tool/Makefile: Add missing `override` for CFLAGS
This allows to build `ich_descriptors_tool` with custom CFLAGS in the environment. Change-Id: If10f08e44141d05f0ee52615303652da576d2fc6 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66979 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Thomas Heijligen <src@posteo.de>
Diffstat (limited to 'util/ich_descriptors_tool')
-rw-r--r--util/ich_descriptors_tool/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ich_descriptors_tool/Makefile b/util/ich_descriptors_tool/Makefile
index 4d971f551..aa1b696c3 100644
--- a/util/ich_descriptors_tool/Makefile
+++ b/util/ich_descriptors_tool/Makefile
@@ -21,7 +21,7 @@ SRC = $(wildcard *.c)
# If the user has specified custom CFLAGS, all CFLAGS settings below will be
# completely ignored by gnumake.
CFLAGS ?= -Os -Wall -Wshadow
-CFLAGS += -I$(SHAREDSRCDIR)/include
+override CFLAGS += -I$(SHAREDSRCDIR)/include
# Auto determine HOST_OS and TARGET_OS if they are not set as argument
HOST_OS ?= $(shell uname)