Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <sjg@chromium.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

authored by

Simon Glass and committed by
Masahiro Yamada
766b7007 34fcf231

+5 -5
+5 -5
Makefile
··· 672 672 # *config targets only - make sure prerequisites are updated, and descend 673 673 # in scripts/kconfig to make the *config target 674 674 675 - # Read arch specific Makefile to set KBUILD_DEFCONFIG as needed. 675 + # Read arch-specific Makefile to set KBUILD_DEFCONFIG as needed. 676 676 # KBUILD_DEFCONFIG may point out an alternative default configuration 677 677 # used for 'make defconfig' 678 678 include $(srctree)/arch/$(SRCARCH)/Makefile ··· 686 686 687 687 else #!config-build 688 688 # =========================================================================== 689 - # Build targets only - this includes vmlinux, arch specific targets, clean 689 + # Build targets only - this includes vmlinux, arch-specific targets, clean 690 690 # targets and others. In general all targets except *config targets. 691 691 692 692 # If building an external module we do not care about the all: rule ··· 1635 1635 @echo 'Documentation targets:' 1636 1636 @$(MAKE) -f $(srctree)/Documentation/Makefile dochelp 1637 1637 @echo '' 1638 - @echo 'Architecture specific targets ($(SRCARCH)):' 1638 + @echo 'Architecture-specific targets ($(SRCARCH)):' 1639 1639 @$(or $(archhelp),\ 1640 - echo ' No architecture specific help defined for $(SRCARCH)') 1640 + echo ' No architecture-specific help defined for $(SRCARCH)') 1641 1641 @echo '' 1642 1642 @$(if $(boards), \ 1643 1643 $(foreach b, $(boards), \ ··· 1679 1679 boards-per-dir = $(sort $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig))) 1680 1680 1681 1681 $(help-board-dirs): help-%: 1682 - @echo 'Architecture specific targets ($(SRCARCH) $*):' 1682 + @echo 'Architecture-specific targets ($(SRCARCH) $*):' 1683 1683 @$(if $(boards-per-dir), \ 1684 1684 $(foreach b, $(boards-per-dir), \ 1685 1685 printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \