From: Oleh Zadorozhnyi Date: Tue, 4 Feb 2025 05:17:30 +0000 (+0200) Subject: kbuild: fix misspelling in scripts/Makefile.lib X-Git-Tag: v6.14-rc2~1^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba958ac74800573f7f54dbe2a7a7b9a9a523ed52;p=thirdparty%2Fkernel%2Flinux.git kbuild: fix misspelling in scripts/Makefile.lib Signed-off-by: Oleh Zadorozhnyi Signed-off-by: Masahiro Yamada --- diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index ad55ef201aacb..cad20f0e66ee9 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) $@)