Skip to content

Commit 766b700

Browse files
sjg20masahir0y
authored andcommitted
kbuild: Correct missing architecture-specific hyphens
These should add a hyphen to indicate that it makes a adjective. Fix them. Signed-off-by: Simon Glass <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 34fcf23 commit 766b700

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ ifdef config-build
672672
# *config targets only - make sure prerequisites are updated, and descend
673673
# in scripts/kconfig to make the *config target
674674

675-
# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed.
675+
# Read arch-specific Makefile to set KBUILD_DEFCONFIG as needed.
676676
# KBUILD_DEFCONFIG may point out an alternative default configuration
677677
# used for 'make defconfig'
678678
include $(srctree)/arch/$(SRCARCH)/Makefile
@@ -686,7 +686,7 @@ config: outputmakefile scripts_basic FORCE
686686

687687
else #!config-build
688688
# ===========================================================================
689-
# Build targets only - this includes vmlinux, arch specific targets, clean
689+
# Build targets only - this includes vmlinux, arch-specific targets, clean
690690
# targets and others. In general all targets except *config targets.
691691

692692
# If building an external module we do not care about the all: rule
@@ -1635,9 +1635,9 @@ help:
16351635
@echo 'Documentation targets:'
16361636
@$(MAKE) -f $(srctree)/Documentation/Makefile dochelp
16371637
@echo ''
1638-
@echo 'Architecture specific targets ($(SRCARCH)):'
1638+
@echo 'Architecture-specific targets ($(SRCARCH)):'
16391639
@$(or $(archhelp),\
1640-
echo ' No architecture specific help defined for $(SRCARCH)')
1640+
echo ' No architecture-specific help defined for $(SRCARCH)')
16411641
@echo ''
16421642
@$(if $(boards), \
16431643
$(foreach b, $(boards), \
@@ -1679,7 +1679,7 @@ help-boards: $(help-board-dirs)
16791679
boards-per-dir = $(sort $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig)))
16801680

16811681
$(help-board-dirs): help-%:
1682-
@echo 'Architecture specific targets ($(SRCARCH) $*):'
1682+
@echo 'Architecture-specific targets ($(SRCARCH) $*):'
16831683
@$(if $(boards-per-dir), \
16841684
$(foreach b, $(boards-per-dir), \
16851685
printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \

0 commit comments

Comments
 (0)