ralink: update patches
[openwrt.git] / target / linux / ramips / patches-3.8 / 0075-Kbuild-add-missing-space.patch
1 From 5d5c270635a50b82931bb32f6fe28b84d45bdb59 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Fri, 17 May 2013 01:03:45 +0200
4 Subject: [PATCH 75/79] Kbuild: add missing space
5
6 Currently the output looks like this:
7 DTC     arch/mips/ralink/dts/mt7620a_eval.dtb
8 DTB    arch/mips/ralink/dts/mt7620a_eval.dtb.S
9 AS      arch/mips/ralink/dts/mt7620a_eval.dtb.o
10
11 Whitespace error was introduced by initial commit
12 commit aab94339cd85d726abeae78fc02351fc1910e6a4
13 Author: Dirk Brandewie <dirk.brandewie@gmail.com>
14 Date:   Wed Dec 22 11:57:26 2010 -0800
15
16 of: Add support for linking device tree blobs into vmlinux
17
18 Signed-off-by: John Crispin <blogic@openwrt.org>
19 ---
20  scripts/Makefile.lib |    2 +-
21  1 file changed, 1 insertion(+), 1 deletion(-)
22
23 diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
24 index bdf42fd..21c1359 100644
25 --- a/scripts/Makefile.lib
26 +++ b/scripts/Makefile.lib
27 @@ -246,7 +246,7 @@ cmd_gzip = (cat $(filter-out FORCE,$^) | gzip -n -f -9 > $@) || \
28  # ---------------------------------------------------------------------------
29  
30  # Generate an assembly file to wrap the output of the device tree compiler
31 -quiet_cmd_dt_S_dtb= DTB    $@
32 +quiet_cmd_dt_S_dtb= DTB     $@
33  cmd_dt_S_dtb=                                          \
34  (                                                      \
35         echo '\#include <asm-generic/vmlinux.lds.h>';   \
36 -- 
37 1.7.10.4
38