diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-06-16 18:56:38 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-20 11:56:26 -0400 |
commit | 45f0ad9545578b4436fdf04ba25a10173bcb75ef (patch) | |
tree | d94bf0cb3b4559fa97d5993d861b3bbfdbe2890f /scripts/Makefile.build | |
parent | 9e546ee9c90fc0a888423fa3269020fe736df7a3 (diff) | |
download | u-boot-imx-45f0ad9545578b4436fdf04ba25a10173bcb75ef.zip u-boot-imx-45f0ad9545578b4436fdf04ba25a10173bcb75ef.tar.gz u-boot-imx-45f0ad9545578b4436fdf04ba25a10173bcb75ef.tar.bz2 |
cosmetic: kbuild: clean-up coding style (sync with Linux 3.16-rc1)
Import the following trivial commits from Linux v3.16-rc1:
bb66fc6 kbuild: trivial - use tabs for code indent where possible
7eb6e34 kbuild: trivial - remove trailing empty lines
3fbb43d kbuild: trivial - fix comment block indent
38385f8 kbuild: trivial - remove trailing spaces
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'scripts/Makefile.build')
-rw-r--r-- | scripts/Makefile.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 6416c1a..04c6f7d 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -369,7 +369,7 @@ $(real-objs-m) : modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE) $(real-objs-m:.o=.s): modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE) quiet_cmd_as_s_S = CPP $(quiet_modtag) $@ -cmd_as_s_S = $(CPP) $(a_flags) -o $@ $< +cmd_as_s_S = $(CPP) $(a_flags) -o $@ $< $(obj)/%.s: $(src)/%.S FORCE $(call if_changed_dep,as_s_S) @@ -463,7 +463,7 @@ link_multi_deps = \ $(filter $(addprefix $(obj)/, \ $($(subst $(obj)/,,$(@:.o=-objs))) \ $($(subst $(obj)/,,$(@:.o=-y)))), $^) - + quiet_cmd_link_multi-y = LD $@ cmd_link_multi-y = $(LD) $(ld_flags) -r -o $@ $(link_multi_deps) $(cmd_secanalysis) |