Skip to content

Commit 3b1e0dd

Browse files
Will McVickermasahir0y
authored andcommitted
kbuild: fix typo in modpost
Commit f73edc8 ("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: f73edc8 ("kbuild: unify two modpost invocations") Signed-off-by: Will McVicker <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 114ff6f commit 3b1e0dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Makefile.modpost

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ quiet_cmd_modpost = MODPOST $@
122122
sed 's/ko$$/o/' $(or $(modorder-if-needed), /dev/null) | $(MODPOST) $(modpost-args) -T - $(vmlinux.o-if-present)
123123

124124
targets += $(output-symdump)
125-
$(output-symdump): $(modorder-if-needed) $(vmlinux.o-if-present) $(moudle.symvers-if-present) $(MODPOST) FORCE
125+
$(output-symdump): $(modorder-if-needed) $(vmlinux.o-if-present) $(module.symvers-if-present) $(MODPOST) FORCE
126126
$(call if_changed,modpost)
127127

128128
__modpost: $(output-symdump)

0 commit comments

Comments
 (0)