diff options
author | Alexander Lobakin <[email protected]> | 2020-01-17 17:02:08 +0300 |
---|---|---|
committer | Paul Burton <[email protected]> | 2020-01-20 15:39:06 -0800 |
commit | 16202c09577f3d0c533274c0410b7de05fb0d458 (patch) | |
tree | 7dba2927f25c2995ab1cb78e037183786faca733 | |
parent | a53998802e178451701d59d38e36f551422977ba (diff) |
MIPS: boot: fix typo in 'vmlinux.lzma.its' target
Commit 92b34a976348 ("MIPS: boot: add missing targets for vmlinux.*.its")
fixed constant rebuild of *.its files on every make invocation, but due
to typo ("lzmo") it made no sense for vmlinux.lzma.its.
Fixes: 92b34a976348 ("MIPS: boot: add missing targets for vmlinux.*.its")
Cc: <[email protected]> # v4.19+
Signed-off-by: Alexander Lobakin <[email protected]>
[[email protected]: s/invokation/invocation/]
Signed-off-by: Paul Burton <[email protected]>
Cc: Ralf Baechle <[email protected]>
Cc: James Hogan <[email protected]>
Cc: Masahiro Yamada <[email protected]>
Cc: Rob Herring <[email protected]>
Cc: [email protected]
Cc: [email protected]
-rw-r--r-- | arch/mips/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/boot/Makefile b/arch/mips/boot/Makefile index 528bd73d530a..4ed45ade32a1 100644 --- a/arch/mips/boot/Makefile +++ b/arch/mips/boot/Makefile @@ -123,7 +123,7 @@ $(obj)/vmlinux.its.S: $(addprefix $(srctree)/arch/mips/$(PLATFORM)/,$(ITS_INPUTS targets += vmlinux.its targets += vmlinux.gz.its targets += vmlinux.bz2.its -targets += vmlinux.lzmo.its +targets += vmlinux.lzma.its targets += vmlinux.lzo.its quiet_cmd_cpp_its_S = ITS $@ |