diff options
author | James Hogan <james.hogan@imgtec.com> | 2013-06-13 06:53:09 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2013-06-13 09:59:39 -0400 |
commit | 1c00a47e48d1bad3ca60c4e923d51c4ac6add5b5 (patch) | |
tree | 62c2dd1963bef9dc439dce11067eb92c756a846b /scripts | |
parent | c0ff68f1611d6855a06d672989ad5cfea160a4eb (diff) |
Makefile.lib: align DTB quiet_cmd
The unaligned dtb.S filename in make output started to irritate me:
DTC arch/metag/boot/dts/skeleton.dtb
DTB arch/metag/boot/dts/skeleton.dtb.S
AS arch/metag/boot/dts/skeleton.dtb.o
LD arch/metag/boot/dts/built-in.o
Add an extra space to quiet_cmd_dt_S_dtb so the dtb.S filename aligns
with all the others.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Dirk Brandewie <dirk.brandewie@gmail.com>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: trivial@kernel.org
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 51bb3de680b6..e5c81aa60778 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
@@ -244,7 +244,7 @@ cmd_gzip = (cat $(filter-out FORCE,$^) | gzip -n -f -9 > $@) || \ | |||
244 | # --------------------------------------------------------------------------- | 244 | # --------------------------------------------------------------------------- |
245 | 245 | ||
246 | # Generate an assembly file to wrap the output of the device tree compiler | 246 | # Generate an assembly file to wrap the output of the device tree compiler |
247 | quiet_cmd_dt_S_dtb= DTB $@ | 247 | quiet_cmd_dt_S_dtb= DTB $@ |
248 | cmd_dt_S_dtb= \ | 248 | cmd_dt_S_dtb= \ |
249 | ( \ | 249 | ( \ |
250 | echo '\#include <asm-generic/vmlinux.lds.h>'; \ | 250 | echo '\#include <asm-generic/vmlinux.lds.h>'; \ |