Skip to content

Commit 8fb4ac1

Browse files
committed
kbuild: fix typos "prequisites" to "prerequisites"
This typo in scripts/Makefile.build has been present for more than 20 years. It was accidentally copy-pasted to other scripts/Makefile.* files. Fix them all. Signed-off-by: Masahiro Yamada <[email protected]> Reviewed-by: Nathan Chancellor <[email protected]>
1 parent 145082e commit 8fb4ac1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

scripts/Makefile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ $(subdir-ym):
487487
need-modorder=$(if $(filter $@/modules.order, $(subdir-modorder)),1) \
488488
$(filter $@/%, $(single-subdir-goals))
489489

490-
# Add FORCE to the prequisites of a target to force it to be always rebuilt.
490+
# Add FORCE to the prerequisites of a target to force it to be always rebuilt.
491491
# ---------------------------------------------------------------------------
492492

493493
PHONY += FORCE

scripts/Makefile.modfinal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ endif
6262

6363
targets += $(modules:%.o=%.ko) $(modules:%.o=%.mod.o)
6464

65-
# Add FORCE to the prequisites of a target to force it to be always rebuilt.
65+
# Add FORCE to the prerequisites of a target to force it to be always rebuilt.
6666
# ---------------------------------------------------------------------------
6767

6868
PHONY += FORCE

scripts/Makefile.vmlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ targets += vmlinux
3333
vmlinux: scripts/link-vmlinux.sh vmlinux.o $(KBUILD_LDS) FORCE
3434
+$(call if_changed_dep,link_vmlinux)
3535

36-
# Add FORCE to the prequisites of a target to force it to be always rebuilt.
36+
# Add FORCE to the prerequisites of a target to force it to be always rebuilt.
3737
# ---------------------------------------------------------------------------
3838

3939
PHONY += FORCE

scripts/Makefile.vmlinux_o

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ targets += modules.builtin
8787
modules.builtin: modules.builtin.modinfo FORCE
8888
$(call if_changed,modules_builtin)
8989

90-
# Add FORCE to the prequisites of a target to force it to be always rebuilt.
90+
# Add FORCE to the prerequisites of a target to force it to be always rebuilt.
9191
# ---------------------------------------------------------------------------
9292

9393
PHONY += FORCE

0 commit comments

Comments
 (0)