From: Mohamad Ayyash Date: Wed, 11 Jun 2014 21:52:38 +0000 (-0700) Subject: arm64: Fix correct dtb clean-files location X-Git-Tag: firefly_0821_release~4090^2~316 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=092f5269621cc6654c9b77ffde7a241cb65d0e50;p=firefly-linux-kernel-4.4.55.git arm64: Fix correct dtb clean-files location This Makefile is evaluated in arch/arm64/boot/Makefile which is what $(obj) is. Signed-off-by: Mohamad Ayyash Change-Id: I75355f064e249a8db693e06073f5cf395ca29ab6 --- diff --git a/arch/arm64/boot/dts/Makefile b/arch/arm64/boot/dts/Makefile index 8dc5d8e28a01..d58ea71119e6 100644 --- a/arch/arm64/boot/dts/Makefile +++ b/arch/arm64/boot/dts/Makefile @@ -12,4 +12,4 @@ targets += $(DTB_LIST) dtbs: $(addprefix $(obj)/, $(DTB_LIST)) -clean-files := *.dtb +clean-files := dts/*.dtb *.dtb