summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleh Zadorozhnyi <lesorubshayan@gmail.com>2025-02-04 07:17:30 +0200
committerMasahiro Yamada <masahiroy@kernel.org>2025-02-06 19:28:14 +0900
commitba958ac74800573f7f54dbe2a7a7b9a9a523ed52 (patch)
treeaba80bb2a375957eb6543636479f797878c77dc2
parent4c56eb33e603c3b9eb4bd24efbfdd0283c1c37e4 (diff)
kbuild: fix misspelling in scripts/Makefile.lib
Signed-off-by: Oleh Zadorozhnyi <lesorubshayan@gmail.com> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r--scripts/Makefile.lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index ad55ef201aac..cad20f0e66ee 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -305,7 +305,7 @@ endef
# These are shared by some Makefile.* files.
ifdef CONFIG_LTO_CLANG
-# Run $(LD) here to covert LLVM IR to ELF in the following cases:
+# Run $(LD) here to convert LLVM IR to ELF in the following cases:
# - when this object needs objtool processing, as objtool cannot process LLVM IR
# - when this is a single-object module, as modpost cannot process LLVM IR
cmd_ld_single = $(if $(objtool-enabled)$(is-single-obj-m), ; $(LD) $(ld_flags) -r -o $(tmp-target) $@; mv $(tmp-target) $@)