diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-02-23 04:04:34 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-02-27 02:28:15 +0900 |
commit | c473a8d03ea8e03ca9d649b0b6d72fbcf6212c05 (patch) | |
tree | 1bfa77049c52dfd9f29f3b5d8783323821521f2b /Makefile | |
parent | 964a596db8db8c77c9903dd05655696696e6b3ad (diff) | |
download | linux-c473a8d03ea8e03ca9d649b0b6d72fbcf6212c05.tar.bz2 |
kbuild: add dt_binding_check to PHONY in a correct place
The dt_binding_check is added to PHONY, but it is invisible when
$(dtstree) is empty. So, it is not specified as phony for
ARCH=x86 etc.
Add it to PHONY outside the ifneq ... endif block.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1239,7 +1239,7 @@ ifneq ($(dtstree),) %.dtb: include/config/kernel.release scripts_dtc $(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@ -PHONY += dtbs dtbs_install dtbs_check dt_binding_check +PHONY += dtbs dtbs_install dtbs_check dtbs dtbs_check: include/config/kernel.release scripts_dtc $(Q)$(MAKE) $(build)=$(dtstree) @@ -1259,6 +1259,7 @@ PHONY += scripts_dtc scripts_dtc: scripts_basic $(Q)$(MAKE) $(build)=scripts/dtc +PHONY += dt_binding_check dt_binding_check: scripts_dtc $(Q)$(MAKE) $(build)=Documentation/devicetree/bindings |