Skip to content

Commit 964a596

Browse files
committed
kbuild: add dtbs_check to PHONY
The dtbs_check should be a phony target, but currently it is not specified so. 'make dtbs_check' works even if a file named 'dtbs_check' exists because it depends on another phony target, scripts_dtc, but we should not rely on it. Add dtbs_check to PHONY. Signed-off-by: Masahiro Yamada <[email protected]> Acked-by: Rob Herring <[email protected]>
1 parent fd63fab commit 964a596

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ ifneq ($(dtstree),)
12391239
%.dtb: include/config/kernel.release scripts_dtc
12401240
$(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
12411241

1242-
PHONY += dtbs dtbs_install dt_binding_check
1242+
PHONY += dtbs dtbs_install dtbs_check dt_binding_check
12431243
dtbs dtbs_check: include/config/kernel.release scripts_dtc
12441244
$(Q)$(MAKE) $(build)=$(dtstree)
12451245

0 commit comments

Comments
 (0)