diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-12-28 17:42:47 -0700 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2013-01-14 08:08:28 -0600 |
commit | d0b6a548f7fc9af9cc0bdea5bcc66bec3581ec37 (patch) | |
tree | 5018776993344ceb489b60fb87184bf4da9ff870 /arch/arm64/boot | |
parent | 9931faca02c604c22335f5a935a501bb2ace6e20 (diff) | |
download | op-kernel-dev-d0b6a548f7fc9af9cc0bdea5bcc66bec3581ec37.zip op-kernel-dev-d0b6a548f7fc9af9cc0bdea5bcc66bec3581ec37.tar.gz |
arm64: dts: prevent *.dtb from always being rebuilt
if_changed (used by the *.dts->*.dtc rule) rebuilds files if they aren't
contained in $(targets). (make V=2 indicates this). Add $(dtb-y) to
$(targets) to prevent *.dtb from always being rebuilt. Note
This fixes a regression introduced by the .dtb rule rework in da4cbc6
"arm64: use new common dtc rule", although since arm64 doesn't actually
have any *.dts yet, this isn't a critical issue.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'arch/arm64/boot')
-rw-r--r-- | arch/arm64/boot/dts/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/Makefile b/arch/arm64/boot/dts/Makefile index 801e2d7..32ac0ae 100644 --- a/arch/arm64/boot/dts/Makefile +++ b/arch/arm64/boot/dts/Makefile @@ -1,4 +1,5 @@ targets += dtbs +targets += $(dtb-y) dtbs: $(addprefix $(obj)/, $(dtb-y)) |