diff options
author | Brian Masney <bmasney@redhat.com> | 2025-03-28 14:38:57 -0400 |
---|---|---|
committer | Masami Hiramatsu (Google) <mhiramat@kernel.org> | 2025-05-16 11:22:40 +0900 |
commit | 9c8cedef3d2d55a327c5122fe7cdff0e1fd8a157 (patch) | |
tree | ebfdb648b4e1b2a6077bdcaa113782cfaa14874a | |
parent | 82f2b0b97b36ee3fcddf0f0780a9a0825d52fec3 (diff) |
tools/bootconfig: allow overriding CFLAGS assignment
Allow overriding the CFLAGS assignment so that the user can pass in
an outside value.
Link: https://lore.kernel.org/all/20250328183858.1417835-2-bmasney@redhat.com/
Signed-off-by: Brian Masney <bmasney@redhat.com>
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
-rw-r--r-- | tools/bootconfig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bootconfig/Makefile b/tools/bootconfig/Makefile index 566c3e0ee561..d2713902ca5c 100644 --- a/tools/bootconfig/Makefile +++ b/tools/bootconfig/Makefile @@ -10,7 +10,7 @@ srctree := $(patsubst %/,%,$(dir $(srctree))) endif LIBSRC = $(srctree)/lib/bootconfig.c $(srctree)/include/linux/bootconfig.h -CFLAGS = -Wall -g -I$(CURDIR)/include +override CFLAGS += -Wall -g -I$(CURDIR)/include ALL_TARGETS := bootconfig ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS)) |