summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlias Apalodimas <ilias.apalodimas@linaro.org>2025-05-20 08:21:31 +0300
committerTom Rini <trini@konsulko.com>2025-05-29 18:42:38 -0600
commitbb08767f12795ba72a93948aa2b5477ad548c511 (patch)
tree6987d2232389f7e669674450da4cb59dd330192b
parent1a59e6d3ba8a2f63a27a1e69286affd0bdc66dbf (diff)
kbuild: hardcode genksyms path and remove GENKSYMS variable
Back port from kernel although it's not used since it makes diffing easier. commit 88110713ca9dfb ("kbuild: hardcode genksyms path and remove GENKSYMS variable") Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rw-r--r--scripts/Makefile.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 2b2beb01bd3..b7611c03008 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -148,7 +148,7 @@ $(obj)/%.i: $(src)/%.c FORCE
cmd_gensymtypes = \
$(CPP) -D__GENKSYMS__ $(c_flags) $< | \
- $(GENKSYMS) $(if $(1), -T $(2)) \
+ scripts/genksyms/genksyms $(if $(1), -T $(2)) \
$(if $(KBUILD_PRESERVE),-p) \
-r $(firstword $(wildcard $(2:.symtypes=.symref) /dev/null))