Commit 2737dfe096b6c34654734a5a4dc5f4b4962c5617

Authored by Stephen Warren
Committed by Tom Rini
1 parent 3a29afcbbf

kbuild: make arch-dtbs target PHONY

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 <swarren@nvidia.com>
Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -40,6 +40,7 @@
40 40 echo >&2; \
41 41 /bin/false)
42 42  
  43 +PHONY += arch-dtbs
43 44 arch-dtbs:
44 45 $(Q)$(MAKE) $(build)=$(ARCH_PATH) dtbs
45 46