diff options
author | Robert Richter <rrichter@cavium.com> | 2014-09-03 17:07:23 +0200 |
---|---|---|
committer | Robert Richter <rrichter@cavium.com> | 2014-10-21 18:07:00 +0200 |
commit | 6f889d8ba125693778e05f0166b963cf08fed930 (patch) | |
tree | b8edb50e6eb9544416314ae75bbcc050b730a8cf /arch/arm/Makefile | |
parent | ca5b34100c571658e605c5554aac374649593327 (diff) |
dts, arm: Remove $(MACHINE) variable from dtbs make recipes
The machine description is not needed to build dtb files.
Signed-off-by: Robert Richter <rrichter@cavium.com>
Diffstat (limited to 'arch/arm/Makefile')
-rw-r--r-- | arch/arm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index b61adfae29d1..c1785eec2cf7 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -314,10 +314,10 @@ $(INSTALL_TARGETS): PHONY += dtbs dtbs_install dtbs: prepare scripts - $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) + $(Q)$(MAKE) $(build)=$(boot)/dts dtbs_install: - $(Q)$(MAKE) $(dtbinst)=$(boot)/dts MACHINE=$(MACHINE) + $(Q)$(MAKE) $(dtbinst)=$(boot)/dts # We use MRPROPER_FILES and CLEAN_FILES now archclean: |