diff options
author | Will McVicker <willmcvicker@google.com> | 2022-10-25 13:17:44 -0700 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2022-10-28 00:19:40 +0900 |
commit | 3b1e0dd2dc8a280b1e89c0df6d38cd28768575a5 (patch) | |
tree | 219ef58e2a0cc12fda0168a0036ad2dea7d0660b | |
parent | 114ff6fe6cfbe81659f9e517d0b25f53db5dfc5d (diff) | |
download | linux-3b1e0dd2dc8a280b1e89c0df6d38cd28768575a5.tar.gz linux-3b1e0dd2dc8a280b1e89c0df6d38cd28768575a5.tar.bz2 linux-3b1e0dd2dc8a280b1e89c0df6d38cd28768575a5.zip |
kbuild: fix typo in modpost
Commit f73edc8951b2 ("kbuild: unify two modpost invocations") introduced
a typo (moudle.symvers-if-present) which results in the kernel's
Module.symvers to not be included as a prerequisite for
$(KBUILD_EXTMOD)/Module.symvers. Fix the typo to restore the intended
functionality.
Fixes: f73edc8951b2 ("kbuild: unify two modpost invocations")
Signed-off-by: Will McVicker <willmcvicker@google.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r-- | scripts/Makefile.modpost | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost index 8489a3402eb8..e41dee64d429 100644 --- a/scripts/Makefile.modpost +++ b/scripts/Makefile.modpost @@ -122,7 +122,7 @@ quiet_cmd_modpost = MODPOST $@ sed 's/ko$$/o/' $(or $(modorder-if-needed), /dev/null) | $(MODPOST) $(modpost-args) -T - $(vmlinux.o-if-present) targets += $(output-symdump) -$(output-symdump): $(modorder-if-needed) $(vmlinux.o-if-present) $(moudle.symvers-if-present) $(MODPOST) FORCE +$(output-symdump): $(modorder-if-needed) $(vmlinux.o-if-present) $(module.symvers-if-present) $(MODPOST) FORCE $(call if_changed,modpost) __modpost: $(output-symdump) |