diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-06-04 10:11:18 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-05 17:01:58 -0400 |
commit | b9d1dbd4df71c2c1bcf5a37c0d23c830b673d540 (patch) | |
tree | 49061480702a5f5287695c3d9bdb8a1d1d757745 /dts | |
parent | 823f18e605011815b666b3a9b2eee399948fa623 (diff) | |
download | u-boot-b9d1dbd4df71c2c1bcf5a37c0d23c830b673d540.tar.gz |
kbuild: use cmd_shipped instead of cmd_copy
We already have cmd_shipped in scripts/Makefile.lib.
Use it rather than defining a new command cmd_copy.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'dts')
-rw-r--r-- | dts/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/dts/Makefile b/dts/Makefile index e59550c9d2..3fca5f5c2f 100644 --- a/dts/Makefile +++ b/dts/Makefile @@ -14,11 +14,8 @@ endif DTB := arch/$(ARCH)/dts/$(DEVICE_TREE).dtb -quiet_cmd_copy = COPY $@ - cmd_copy = cp $< $@ - $(obj)/dt.dtb: $(DTB) FORCE - $(call if_changed,copy) + $(call if_changed,shipped) targets += dt.dtb |