]> Git Repo - u-boot.git/commitdiff
kbuild: make arch-dtbs target PHONY
authorStephen Warren <[email protected]>
Tue, 26 Feb 2019 19:20:25 +0000 (12:20 -0700)
committerTom Rini <[email protected]>
Thu, 28 Feb 2019 19:21:46 +0000 (14:21 -0500)
Without this, the arch-dtbs target only gets evaluated when building
U-Boot the first time, not when re-building (incrementally building)
U-Boot. Thus incremental builds ignore changes to DTB files.

Signed-off-by: Stephen Warren <[email protected]>
Reviewed-by: Masahiro Yamada <[email protected]>
dts/Makefile

index a7a604303cc63ae836b8c4c16635514c24e6c3ef..4970223b3d2ee438f8d84ba150689f81bb086411 100644 (file)
@@ -40,6 +40,7 @@ endif
        echo >&2;                                                       \
        /bin/false)
 
+PHONY += arch-dtbs
 arch-dtbs:
        $(Q)$(MAKE) $(build)=$(ARCH_PATH) dtbs
 
This page took 0.03604 seconds and 4 git commands to generate.