diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-12-25 00:31:24 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-01-09 11:25:44 -0500 |
commit | 665d92e38f65d70796aad2b8e49e42e80815d4a4 (patch) | |
tree | 3328f014ac8a4a0a2ba9c24cdc1961d7407ef43a /arch/x86/Makefile.um | |
parent | dd33c03b18b3f2db791eb6a17c37d2de66e4de18 (diff) |
kbuild: do not add $(call ...) to invoke cc-version or cc-fullversion
The macros cc-version, cc-fullversion and ld-version take no argument.
It is not necessary to add $(call ...) to invoke them.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Helge Deller <deller@gmx.de> [parisc]
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'arch/x86/Makefile.um')
-rw-r--r-- | arch/x86/Makefile.um | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Makefile.um b/arch/x86/Makefile.um index 36b62bc52638..95eba554baf9 100644 --- a/arch/x86/Makefile.um +++ b/arch/x86/Makefile.um | |||
@@ -30,7 +30,7 @@ cflags-y += -ffreestanding | |||
30 | # Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use | 30 | # Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use |
31 | # a lot more stack due to the lack of sharing of stacklots. Also, gcc | 31 | # a lot more stack due to the lack of sharing of stacklots. Also, gcc |
32 | # 4.3.0 needs -funit-at-a-time for extern inline functions. | 32 | # 4.3.0 needs -funit-at-a-time for extern inline functions. |
33 | KBUILD_CFLAGS += $(shell if [ $(call cc-version) -lt 0400 ] ; then \ | 33 | KBUILD_CFLAGS += $(shell if [ $(cc-version) -lt 0400 ] ; then \ |
34 | echo $(call cc-option,-fno-unit-at-a-time); \ | 34 | echo $(call cc-option,-fno-unit-at-a-time); \ |
35 | else echo $(call cc-option,-funit-at-a-time); fi ;) | 35 | else echo $(call cc-option,-funit-at-a-time); fi ;) |
36 | 36 | ||