diff options
author | Stephen Warren <swarren@nvidia.com> | 2019-02-26 12:20:25 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-02-28 14:21:46 -0500 |
commit | 2737dfe096b6c34654734a5a4dc5f4b4962c5617 (patch) | |
tree | 292252ebe2b38e6093fe3040628eb0219361d3c1 /dts | |
parent | 3a29afcbbfd8eb6d58f06b1717807c036971ca58 (diff) | |
download | u-boot-2737dfe096b6c34654734a5a4dc5f4b4962c5617.tar.gz |
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>
Diffstat (limited to 'dts')
-rw-r--r-- | dts/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dts/Makefile b/dts/Makefile index a7a604303c..4970223b3d 100644 --- a/dts/Makefile +++ b/dts/Makefile @@ -40,6 +40,7 @@ endif echo >&2; \ /bin/false) +PHONY += arch-dtbs arch-dtbs: $(Q)$(MAKE) $(build)=$(ARCH_PATH) dtbs |